+2 votes
in Web & Google by (71.8k points)

I see several lines of the following error in the error log file of my Web Server. I am using Apache + Nginx (reverse proxy) + PHP-FPM.

The timeout specified has expired: [client xx.xx.xx.xx:xxxx] AH01075: Error dispatching request to : (polling)

How to fix this error. 

1 Answer

+1 vote
by (346k points)
selected by
 
Best answer

If you can access httpd.conf or apache2.conf (depending on your system), set the value of Timeout to a larger value.
E.g.

Timeout 300

If you are using CentOS Web Panel (CWP), you need to modifiy the following file to set Timeout to a large value:

/usr/local/apache/conf/extra/httpd-default.conf
After updating the file, restart Apache.


...