每当我在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。
我很确定它与我的代码无关,因为如果是这样的话,它有时甚至不应该工作。
1条答案
按热度按时间vfhzx4xs1#
通过将
php-fpm.conf
(etc\php\7.4\fpm
)文件中的log_level
更改为notice
解决了我的问题: