Eu tenho o NginX servindo um site drupal usando o fcgi. A tentativa de navegar para um arquivo php inexistente (por exemplo, www.example.com/this-file-doesn't-exist.php) resulta em uma tela branca com este erro:
'Nenhum arquivo de entrada especificado'
Eu usei este post para me ajudar a configurar o NginX:
link
Este é o meu arquivo de configuração do NginX:
server {
listen 1.2.3.4:80 default;
server_name www.example.com;
client_max_body_size 6M;
root /var/www/example.com/;
index index.php;
error_page 404 /index.php;
error_page 403 /403.html;
# set up a location to serve static images for static error pages
location ^~ /error_images/ {
root /var/www/static_pages/error_pages;
access_log off;
expires 30d;
}
# use our own custom 403 page
location = /403.html {
root /var/www/static_pages/error_pages;
}
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/static_pages/error_pages;
}
location / {
error_page 404 index.php;
error_page 403 /403.html;
# the main drupal app
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
}
}
# hide protected files
location ~* \.(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template)$ {
deny all;
}
# serve static files directly
location ~* ^.+\.(jpg|jpeg|gif|css|png|js|ico)$ {
rewrite ^/favicon.ico$ /sites/example.com/themes/exampletheme/favicon.ico break;
access_log off;
expires 30d;
}
# imagecache needs to have php read any files that it's planning to manipulate
location ^~ /sites/example.com/files/imagecache/ {
index index.php index.html;
# assume a clean URL is requested, and rewrite to index.php
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?q=$1 last;
break;
}
}
# serve the app via fastcgi
location ~ \.php$ {
# ensure that a 404 is returned if a non existant php file is requested
# doesn't seem to work properly, so commenting out
# fastcgi_intercept_errors on;
fastcgi_pass unix:/tmp/php-fastcgi.sock;
fastcgi_index index.php;
fastcgi_read_timeout 240;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
Este post link sugere que pode ser um erro de permissão. No entanto, eu inicio o fcgi como o usuário: group nginx: nginx, que é o mesmo usuário que o NginX executa como.
Em geral, a configuração funciona bem, e o site funciona 100% como deveria. É somente quando solicitando um arquivo .php que não existe que o problema ocorre. Solicitar um arquivo .html que não exista, por exemplo, resulta no Drupal atendendo a sua página de erro 404 - que é o que eu quero que aconteça também com arquivos .php inexistentes.
ps. Se você quiser ver esse URL, por favor, remova o espaço em branco extra após http: // - Eu não tenho o suficiente para postar mais de um hiperlink!