Welcome! Log In Create A New Profile

Advanced

Re: No input file specified.

Yu Sun
October 22, 2009 09:38PM
tw1sted wrote:
> edogawaconan Wrote:
> -------------------------------------------------------
>>
>> www.asciiribbon.org
> Yes it is, index.html displays fine.
>
> Posted at Nginx Forum:
> http://forum.nginx.org/read.php?2,15713,15835#msg-15835



You can try this:
1.create a file named php.conf in you nginx conf directory,
and write this:

fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;

fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT $document_root;
fastcgi_param SERVER_PROTOCOL $server_protocol;

fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;



2. change your nginx config file to this:
server {
listen 80;
server_name website.org;

root /home/user/public_html;
index index.php index.html index.htm;


location ~ \.php$ {
include php.conf;
}
error_page 500 502 503 504 /50x.html;
location = /home/user/public_html/50x.html {
root html;
}
}

--
Posted via http://www.ruby-forum.com/.
Subject Author Posted

No input file specified.

tw1sted October 21, 2009 07:04PM

Re: No input file specified.

edogawaconan October 22, 2009 12:48AM

Re: No input file specified.

tw1sted October 22, 2009 05:36AM

Re: No input file specified.

edogawaconan October 22, 2009 06:40AM

Re: No input file specified.

tw1sted October 22, 2009 06:55AM

Re: No input file specified.

Yu Sun October 22, 2009 09:38PM

Re: No input file specified.

tw1sted October 23, 2009 05:50AM

Re: No input file specified.

edogawaconan October 23, 2009 06:10AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 297
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