nginx 使用PHP时出现“从上游阅读响应标头时对等方重置连接”错误(7.4)Exception

envsm3lx  于 2022-11-22  发布在  Nginx
关注(0)|答案(1)|浏览(127)

每当我在Phalcon 4应用程序中抛出异常时,我都会得到502错误网关。我使用的是默认的PHP Exception类,它实现了Throwable接口。

throw new Exception ("Some error message here", 500);

我浪费了这么多时间,看到所有关于这个问题的帖子,但没有找到解决方案。
当我检查我的nginx日志时,它总是说
Connection reset by peer while reading response header from upstream
有时(15%)它抛出异常并给我消息,但大多数情况下它只显示502。
我很确定它与我的代码无关,因为如果是这样的话,它有时甚至不应该工作。

vfhzx4xs

vfhzx4xs1#

通过将php-fpm.confetc\php\7.4\fpm)文件中的log_level更改为notice解决了我的问题:

相关问题