我遇到了 Nginx 和 PHP 的 FastCGI 文件未找到问题。有人能看看我的配置文件吗?
server {
listen 80; ## listen for ipv4
listen [::]:80 default ipv6only=on; ## listen for ipv6
server_name localhost;
access_log /var/log/nginx/localhost.access.log;
root /var/www/site1;
location / {
index index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9090;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name;
include fastcgi_params;
}
location /doc {
root /usr/share;
autoindex on;
allow 127.0.0.1;
deny all;
}
location /images {
root /usr/share;
autoindex on;
}
}
答案1
你的其中一个fastcgi_param
s 是错误的。
原文应为:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;