nginx从1.2.1更新到1.9.2后,PHP-FPM状态页面为空白

时间:2015-10-28 21:15:29

标签: php nginx status

我一直在使用Nginx 1.2.1一段时间了,由于安全问题,我决定升级到1.9.2。

问题是:php-fpm状态页面现在为我提供一个完全空白的页面。 HTTP响应代码说:200 ok,但content = 0 bytes

我尝试了什么:

检查Nginx用户/组:它是www:www(之前是) 检查Php-FPM用户/组:它是www:www(以前是) 在aptitude升级期间,我选择保留我的配置文件

tail /var/log/nginx/error.log说:什么都没有 tail /var/log/nginx/mywebsite-error.log说:什么都没有 tail /var/log/php-fpm/php5-fpm.log说:除了一些进程跟踪完成但没有任何相关之外什么都没有

我在升级之前一直在使用这段代码,没问题:

    location ~ ^/(php_status|ping)$ {
    # access_log off;
    allow 127.0.0.1;
    allow MY_IP_ADRESS;
    deny all;
    include fastcgi_params;
    fastcgi_pass    unix:/var/run/php5-fpm.sock;
}

因此,我尝试使用语法:

fastcgi_pass 127.0.0.1:9000;

但这导致了来自nginx的502,我认为问题不存在。

我的选项已经用完......

感谢您的帮助。

2 个答案:

答案 0 :(得分:30)

试试这个:

location ~ ^/(php_status|ping)$ {
    # access_log off;
    allow 127.0.0.1;
    allow MY_IP_ADRESS;
    deny all;
    include fastcgi_params;

    # This is important
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

    fastcgi_pass    unix:/var/run/php5-fpm.sock;
}

答案 1 :(得分:11)

似乎只能添加

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;