Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set response time out in Apache

Tags:

apache

My Apache server giving me 503 for some response after 24 sec. Is there any setting in Apache to configured response time out? I have already configured connection_pool_timeout=600

My Apache redirect request to my application server. Now I am receiving 503 for application response. So is there any setting to increase response timeout?

like image 526
user1041580 Avatar asked Nov 04 '22 17:11

user1041580


1 Answers

Depending on your setup there are different timeout options you can set (see mod_proxy). If you want a fast solution you could set TimeOut (see docs); ProxyTimeout and other timeouts will use TimeOut as default.

Example: TimeOut 30 -- set default timeout to 30 seconds.

like image 183
Max Leske Avatar answered Nov 15 '22 06:11

Max Leske