我一直在使用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,我不认为问题存在.
我的选择已经用完……
谢谢你的帮助.
试试这个:
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;
}