# grep pm.status_path /etc/php5/fpm/pool.d/www.conf
pm.status_path = /fcgi-status
nginx配置:
location ~ ^/(fcgi-status|ping)$ {
access_log off;
allow 127.0.0.1;
deny all;
fastcgi_param SCRIPT_FILENAME /path/$fastcgi_script_name;
fastcgi_pass unix:/var/run/php-fastcgi/php-fastcgi.socket;
}
fastcgi_param 和 fastcgi_pass 与适用的网站相同。
php-fastcgi 和 nginx 已重新启动,但是:
# curl http://127.0.0.1/fcgi-status -i
HTTP/1.1 404 Not Found
Server: nginx/1.10.1
Date: Tue, 18 Oct 2016 08:10:03 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/5.5.9-1ubuntu4.20
No input file specified.
这不是这个问题的重复,因为错误不是“找不到文件”(也许 nginx 无法找到路径),而是“没有指定输入文件”。请注意,响应中有php标头,因此答案不是来自 nginx,而是来自 php-fpm。
这是服务器上唯一的池。
我究竟做错了什么?