我在 Arch linux 上有了 nginx 和 php-fpm 的自定义设置。我将在下面发布我的配置。我想我已经从前到后阅读了这两个程序的文档大约 6 次,但我已经到了无法从系统中挤出更多信息的地步,因此没有任何东西可以谷歌搜索。下面是瘦身:
我从头开始编译了 nginx 和 php(我对此非常熟悉,所以大概没有问题)。我已经将 nginx 设置为正确地提供服务,它始终如一地做到这一点:php 文件通过 unix 套接字传递(对于 http 用户来说,这是存在和读/写可访问的,这是 nginx 和php-fpm 运行方式),同时提供存在的常规文件。对文件夹的调用和对不存在的文件的调用都发送到/index.php
文件。所有权限都按顺序排列。
问题
在出现 php 错误之前,我的页面可以正常运行。该错误被转储到 nginx 的错误日志中,并且所有来自 php-fpm 特定子进程的页面请求都返回空白。它们似乎已被处理,这一事实证明,随后对有错误的文件的调用继续将错误消息转储到日志文件中,但有缺陷的文件和干净的文件都返回完全空白的 200 状态代码。
几乎更疯狂的是,我发现如果我只是坐在上面几分钟,有问题的 php-fpm 子进程不会死,但无论如何都会在下一个请求时产生一个新进程,并且新进程可以正确地提供页面. 从那时起,每个第二个请求都是空白的,而另一个请求恢复正常,大概是因为子进程轮流为请求提供服务。
我的测试如下:
// web directory listing:
mysite/
--index.php
--bad_file.php
--imgs/
----test.png
----test2.png
索引.php:
<?php
die('all cool');
?>
坏文件.php*:
<?php
non_existent_function($called);
?>
*注意:我之前发布bad_file.php
过包含该行$forgetting_the_semicolon = true
,但发现这实际上并没有产生我正在谈论的错误(这是我现在在我自己的系统上实现的一个简化示例)。但是,上面的代码确实重现了该错误,因为它产生了致命错误而不是解析错误。
来自终端的测试呼叫:
curl -i dev.mysite.com/ # "all cool"
curl -i dev.mysite.com/index.php # Redirected to / by nginx
curl -i dev.mysite.com/imgs # "all cool"
curl -i dev.mysite.com/imgs/test.png # returns test.png, printing gibberish
curl -i dev.mysite.com/nofile.php # "all cool"
curl -i dev.mysite.com/bad_file.php # blank, but error messages added to log
curl -i dev.mysite.com/ # blank! noooooooo!!
curl -i dev.mysite.com/ # still blank! noooooooo!!
#wait 5 or 6 minutes (not sure how many - probably corresponds to my php-fpm config)
curl -i dev.mysite.com/ # "all cool"
curl -i dev.mysite.com/ # blank!
curl -i dev.mysite.com/ # "all cool"
curl -i dev.mysite.com/ # blank!
#etc....
nginx.conf:
user http;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type text/plain;
sendfile on;
keepalive_timeout 65;
index /index.php;
server {
listen 127.0.0.1:80;
server_name dev.mysite.net;
root /path/to/web/root;
try_files /maintenance.html $uri @php;
location = /index.php {
return 301 /;
}
location ~ .php$ {
include fastcgi_params;
fastcgi_pass unix:/usr/local/php/var/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location @php {
include fastcgi_params;
fastcgi_pass unix:/usr/local/php/var/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
}
}
}
php-fpm.conf:
[global]
pid = run/php-fpm.pid
error_log = log/php-fpm.log
log_level = warning
[www]
user = http
group = http
listen = var/run/php-fpm.sock
listen.owner = http
listen.group = http
listen.mode = 0660
pm = dynamic
pm.max_children = 5
pm.start_servers = 1
pm.min_spare_servers = 1
pm.max_spare_servers = 3
根据要求提供 php.ini
总之
所有页面都按预期提供,直到出现 php 错误,此时对该特定 php-fpm 子进程的所有后续请求显然都已处理,但返回为完全空白页面。发生的错误会在 nginx 错误日志文件中报告并继续报告。
如果有人有任何想法,请把它们扔给我。在我弄清楚这一点之前,我已经死在水中了。顺便说一句,如果有人知道 php-fpm 的合法文档来源,那也会很有帮助。php-fpm.org 似乎几乎没用,php.net 的 fpm 文档也是如此。
谢谢!