How to set response time out in Apache

apache

Solution

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.

Problem

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?

Original source