Welcome! Log In Create A New Profile

Advanced

Re: nginx-0.7.52

April 21, 2009 04:20PM
On Mon, Apr 20, 2009 at 03:20:59PM -0700, Chris Cortese wrote:

> Thanks for this release! I've been trying to get nginx going on Windows
> for a while now.
>
> With this latest build though, all I can get is "No input file
> specified". I thought maybe I was specifying paths in a way it didn't
> like but I've tried every variation on the Windows paths I can think
> of. This is my current conf for one of my sites. Can anyone tell me
> what's wrong here? TIA.

The message "No input file specified" meanse that PHP can not find file
on passed path, say:
"c:/cygwin/home/Chris/www/live/jobsite/trunk/html/public/index.php"
I do not know how Cygwin translated pathnames, but it may be just
"/home/Chris/www/live/jobsite/trunk/html/public/index.php"
therefore you may try

- fastcgi_param SCRIPT_FILENAME c:/cygwin/home/Chris....
+ fastcgi_param SCRIPT_FILENAME /home/Chris....

> server {
> # listen 127.0.0.1:80;
> listen 80;
> server_name jobsite.xpdesktop;
>
> access_log
> "c:/cygwin/home/Chris/www/live/jobsite/logs/jobsite.access.log";
> error_log
> "c:/cygwin/home/Chris/www/live/jobsite/logs/jobsite.error.log" debug;
>
> root "c:/cygwin/home/Chris/www/live/jobsite/trunk/html/public";
> index index.php index.html;
>
> location / {
> fastcgi_pass 127.0.0.1:9000;
> fastcgi_param SCRIPT_FILENAME
> "c:/cygwin/home/Chris/www/live/jobsite/trunk/html/public/index.php";
> fastcgi_param QUERY_STRING q=$request_uri;
> include "c:/nginx/conf/fastcgi_params";
> }
>
> location ~ \.php$ {
> fastcgi_pass 127.0.0.1:9000;
> fastcgi_index index.php;
> fastcgi_param SCRIPT_FILENAME
> "c:/cygwin/home/Chris/www/live/jobsite/trunk/html/public/$fastcgi_script_name";
> fastcgi_param QUERY_STRING q=$request_uri;
> include "c:/nginx/conf/fastcgi_params";
> }
> }
>
>
> Igor Sysoev wrote:
> >Changes with nginx 0.7.52 20 Apr
> >2009
> >
> > *) Feature: the first native Windows binary release.
> >
> > *) Bugfix: in processing HEAD method while caching.
> >
> > *) Bugfix: in processing the "If-Modified-Since", "If-Range", etc.
> > client request header lines while caching.
> >
> > *) Bugfix: now the "Set-Cookie" and "P3P" header lines are hidden in
> > cacheable responses.
> >
> > *) Bugfix: if nginx was built with the ngx_http_perl_module and with a
> > perl which supports threads, then during a master process exit the
> > message "panic: MUTEX_LOCK" might be issued.
> >
> > *) Bugfix: nginx could not be built --without-http-cache; the bug had
> > appeared in 0.7.48.
> >
> > *) Bugfix: nginx could not be built on platforms different from i386,
> > amd64, sparc, and ppc; the bug had appeared in 0.7.42.
> >
> >
> >
>

--
Igor Sysoev
http://sysoev.ru/en/
Subject Author Posted

nginx-0.7.52

Igor Sysoev April 20, 2009 02:33AM

Re: nginx-0.7.52

Kevin Worthington April 20, 2009 03:12AM

Re: nginx-0.7.52

Igor Sysoev April 20, 2009 03:24AM

Re: nginx-0.7.52

Kevin Worthington April 20, 2009 01:28PM

Re: nginx-0.7.52

Weibin Yao April 20, 2009 06:38AM

Re: nginx-0.7.52

Igor Sysoev April 20, 2009 07:13AM

Re: nginx-0.7.52

Igor Sysoev April 20, 2009 07:30AM

basic auth not prompting for id and pass

AMP Admin April 20, 2009 07:27PM

RE: nginx-0.7.52

郭振立 April 20, 2009 09:41AM

Re: nginx-0.7.52

Joaquin Cuenca Abela April 20, 2009 10:42AM

Re: nginx-0.7.52

Igor Sysoev April 20, 2009 01:02PM

Re: Re: Re: nginx-0.7.52

Weibin Yao April 21, 2009 04:57AM

Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 04:18AM

Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 04:06AM

Re: Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 06:19AM

Re: Re: nginx-0.7.52

Weibin Yao April 21, 2009 03:51AM

Re: Re: Re: nginx-0.7.52

Weibin Yao April 21, 2009 05:43AM

Re: Re: Re: nginx-0.7.52

Istv April 21, 2009 05:52AM

Re: nginx-0.7.52

Anton Yuzhaninov April 21, 2009 06:12AM

Re: Re: nginx-0.7.52

Weibin Yao April 21, 2009 11:12PM

Re: Re: nginx-0.7.52

Weibin Yao April 22, 2009 12:01AM

Re: Re: nginx-0.7.52

Igor Sysoev April 22, 2009 02:20AM

Re: Re: nginx-0.7.52

Igor Sysoev April 22, 2009 03:38AM

Re: Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 06:23AM

Re: Re: Re: nginx-0.7.52

Roger Pack April 21, 2009 10:52AM

Re: Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 11:17AM

Re: Re: Re: nginx-0.7.52

Istv April 21, 2009 11:27AM

Re: Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 04:00PM

Re: Re: Re: nginx-0.7.52

Roger Pack April 21, 2009 11:36AM

Re: Re: Re: nginx-0.7.52

Igor Sysoev April 21, 2009 03:54PM

Re: nginx-0.7.52

Chris Cortese April 20, 2009 06:20PM

Re: nginx-0.7.52

Igor Sysoev April 21, 2009 04:20PM

Re: nginx-0.7.52

Roger Pack April 21, 2009 05:35PM

Re: nginx-0.7.52

Chris Cortese April 21, 2009 07:34PM

Re: nginx-0.7.52

Igor Sysoev April 22, 2009 08:01AM

Re: nginx-0.7.52 all Windows native working

Chris Cortese April 22, 2009 03:21PM

Re: nginx-0.7.52 all Windows native working

Roger Pack April 23, 2009 09:38AM

Re: nginx-0.7.52

Chris Wan April 21, 2009 11:37PM

Re: nginx-0.7.52

Igor Sysoev April 22, 2009 08:45AM

Re: nginx-0.7.52

Chris Wan April 22, 2009 11:14PM

Re: nginx-0.7.52

diogin April 22, 2009 02:47AM

Re: nginx-0.7.52

Igor Sysoev April 22, 2009 03:02AM

Re: nginx-0.7.52

diogin April 22, 2009 08:09AM

Re: nginx-0.7.52

Igor Sysoev April 22, 2009 08:12AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 307
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready