Hi,
I’m running HestiaCP lastest version with Apache2, nginx and PHP-FPM for multi-php versions
I have an issue when installing an addon on my favorite CMS.
On the log I have this :
[Mon Aug 03 23:18:41.597564 2020] [proxy_fcgi:error] [pid 6778:tid 140491299469056] (70007)The timeout specified has expired: [client 151.xxx.bbb.227:0] AH01075: Error dispatching request to : (polling), referer: https://domain.eu/manager/?a=workspaces
I have found 2 topics on this forum :
and followed this link : php - Apache proxfy_fcgi - Error dispatching request to - Stack Overflow
What I did and what it doesn’t work :
-
add the line
RequestReadTimeout handshake=0 header=20-600,MinRate=500 body=20,MinRate=500
found on stackoverflow to the file /etc/apache2/mods-enabled/reqtimeout.conf -
add the followed lines to /etc/apache2/mods-enabled/fcgid.conf :
FcgidIdleTimeout 600 FcgidProcessLifeTime 600FcgidConnectTimeout 600 FcgidIOTimeout 600 ProxyTimeout 600
-
add the followed lines to /home/USERNAME/conf/web/DOMAIN.TLD/apache2.conf_fcgi :
FcgidIdleTimeout 600 FcgidProcessLifeTime 600 FcgidConnectTimeout 600 FcgidIOTimeout 600 Timeout 600 ProxyTimeout 600
After each action, I have restarted apache2 service
What did I missed ?