nginx和php-fpm“主要脚本未知”

前端之家收集整理的这篇文章主要介绍了nginx和php-fpm“主要脚本未知”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我知道,闻起来像是重复的,但我现在已经尝试了5次安装,但我仍然无法使用它.大多数配置很复杂的chroot和多服务器等,但我已经减少了现在最简单的配置可能.我想了解fpm是如何以最简单的形式设置Nginx的……请耐心等待.

当前设置:

> CentOS 7 64位
>来自Nginx repo的Nginx 1.8.0
>来自Remi PHP56的PHP 5.6

添加到/etc/Nginx/conf.d/default.conf

    location ~ \.PHP${
      fastcgi_pass   unix:/var/run/PHP-fpm/PHP-fpm.sock;
      fastcgi_index  index.PHP;
      fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
      include        fastcgi_params;
    }

添加和更改/etc/PHP-fpm.d/www.conf

listen = /var/run/PHP-fpm/PHP-fpm.sock
listen.owner = Nginx
listen.group = Nginx
listen.mode = 0660

添加文件/usr/share/Nginx/html/info.PHP

PHP PHPinfo();?>

开始这两项服务

systemctl start Nginx.service
systemctl start PHP-fpm.service

最后是tail -f /var/log/Nginx/error.log

2015/11/09 12:18:01 [error] 28638#0: *1 FastCGI sent in stderr:
Primary script unknown” while reading response header from upstream,
client: xx.xxx.xxx.xxx,server: localhost,request: “GET /info.PHP
HTTP/1.1”,upstream: “fastcgi://unix:/var/run/PHP-fpm/PHP-fpm.sock:”,
host: “xxx.xx.xxx.xx”

所以似乎FPM找不到脚本,这是我设法理解的,但根据配置,脚本文件名是文档根和脚本名称.脚本名称为info.PHP,根据默认配置,根路径为:

    location / {
    root   /usr/share/Nginx/html;
    index  index.html index.htm;
}

因此,如果我手动连接,我得到

/usr/share/Nginx/html/info.PHP

这个文件存在

#ls -lah /usr/share/Nginx/html/
total 20K
drwxr-xr-x 2 root root  4.0K Nov  9 12:35 .
drwxr-xr-x 3 root root  4.0K Apr 21  2015 ..
-rw-r--r-- 1 root root   537 Apr 21  2015 50x.html
-rw-r--r-- 1 root root   612 Apr 21  2015 index.html
-rw-r--r-- 1 root Nginx   20 Nov  9 10:45 info.PHP

任何人都可以解释为什么这不起作用?

最佳答案
$document_root需要从同一位置或父容器中的根指令中获取其值.您似乎在兄弟容器中定义了root.将root移动到服务器容器.

猜你在找的Nginx相关文章