No input file specified.
    tw1sted 
    nginx-forum at nginx.us
       
    Thu Oct 22 03:04:04 MSD 2009
    
    
  
if fastcgi is running I get "No input file spcified."
if the fastcgi is not up, I get "The page you are looking for is temporarily unavailable."
This is my config file:
server {
	listen   80;
	server_name website.org;
		root   /home/user/public_html;
	location / {
		index  index.php index.html index.htm;
}
	location ~ \.php$ {
		fastcgi_pass   127.0.0.1:9000;
		fastcgi_index  index.php;
		fastcgi_param  SCRIPT_FILENAME  /home/user/public_html$fastcgi_script_name;
               include /usr/local/nginx/conf/fastcgi_params;
     
	}
        error_page   500 502 503 504  /50x.html;
        location = /home/user/public_html/50x.html {
            root   html;
        }
}
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,15713,15713#msg-15713
    
    
More information about the nginx
mailing list