Guten Morgen erstmal.
Ich habe auf meinem vServer nginx aufgesetzt. Ich bin strikt nach diesem Howto (Installing Nginx With PHP5 And MySQL Support On Debian Etch | HowtoForge - Linux Howtos and Tutorials) vorgegangen. Soweit sogut, die info.php Seite wird ohne Probleme angezeigt, jede andere *.php File jedoch, folgt in No input file specified.
Die php.ini ist soweit die standard Config, bis auf die "cgi.fix_pathinfo = 1" ausnahme ganz am Ende.
Das ist die nginx.conf
Freue mich über jede Hilfe
Ich habe auf meinem vServer nginx aufgesetzt. Ich bin strikt nach diesem Howto (Installing Nginx With PHP5 And MySQL Support On Debian Etch | HowtoForge - Linux Howtos and Tutorials) vorgegangen. Soweit sogut, die info.php Seite wird ohne Probleme angezeigt, jede andere *.php File jedoch, folgt in No input file specified.
Die php.ini ist soweit die standard Config, bis auf die "cgi.fix_pathinfo = 1" ausnahme ganz am Ende.
Das ist die nginx.conf
Code:
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name 127.0.0.1;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root html;
index index.html index.htm index.php;
}
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
}
Freue mich über jede Hilfe