且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

对等方重置连接:mod_fcgid:从 FastCGI 服务器读取数据时出错

更新时间:2022-01-04 22:49:10

我通过添加 FcgidBusyTimeout 设法解决了这个问题.以防万一有人跟我有类似的问题.

I managed to solved this by adding FcgidBusyTimeout . Just in case if anyone have similar issue with me.

这是我在 apache.conf 上的设置:

Here is my settings on my apache.conf:

<VirtualHost *:80>
.......
<IfModule mod_fcgid.c>
FcgidBusyTimeout 3600
</IfModule>
</VirtualHost>