Por favor, leia atentamente a documentação
Paths in a configuration file must be specified in UNIX-style using forward slashes:
access_log logs/site.log; root C:/web/html;
Eu recebo o erro acima ao usar nginx e php-cgi no Windows. Esta é minha configuração nginx:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80 default;
server_name localhost;
charset utf-8;
root ..\www;
index index.php index.html index.htm;
error_page 500 502 503 504 /50x.html;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
root ..\www;
try_files $uri =404;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\. {
access_log off;
log_not_found off;
deny all;
}
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
}
}
}
}
Alguém pode ver algo errado com isso?
Editar: aqui está um log de solicitações.
127.0.0.1 - - [30/Apr/2012:00:04:35 +0100] "GET /hi.php HTTP/1.1" 404 36 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20120428 Firefox/15.0a1"
Por favor, leia atentamente a documentação
Paths in a configuration file must be specified in UNIX-style using forward slashes:
access_log logs/site.log; root C:/web/html;
Tente usar barras normais /
em vez de barras invertidas \
em suas diretivas raiz.
Além disso, não acho que você precise de uma diretiva raiz no bloco location ~ \.php$ {
.
Nothing logs in the error file. And just tried your suggestion, now I get a nginx 404 page.