user1041580
user1041580

Reputation: 209

How to set response time out in 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?

Upvotes: 5

Views: 18044

Answers (1)

Max Leske
Max Leske

Reputation: 5125

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.

Upvotes: 3

Related Questions