PHP 503 errors

Checking the apache2 log i saw a lots of timeout errors like
[proxy_fcgi:error] (70007)The timeout specified has expired: AH01075
so timeout setting of the proxy was increased to solve it.

Change-Id: I805fcd0e21259905e4db51283a708c9a54a0557b
This commit is contained in:
Sebastian Marcet 2016-10-27 01:11:15 -03:00 committed by Jeremy Stanley
parent 6f938175e0
commit b70762da8b
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@
</Directory>
<IfModule mod_proxy_fcgi.c>
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:9000<%= @docroot %>/$1 retry=0
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:9000<%= @docroot %>/$1 retry=0 timeout=120
</IfModule>
<IfModule mod_fastcgi.c>