On 01/22/2007 08:29 PM, Lucas Brasilino wrote:
> Hi All:
>
> As I point out in:
>
> http://mail-archives.apache.org/mod_mbox/httpd-users/200701.mbox/raw/[EMAIL
> PROTECTED]
Based on your configuration from above, the following should work:
ProxyRequests Off
<Proxy balancer://webcluster>
BalancerMember http://server:9080 loadfactor=1 timeout=5
BalancerMember http://localhost:9080 loadfactor=1 timeout=5
ProxySet lbmethod=byrequests
</Proxy>
ProxyPass /loadbalancer balancer://webcluster/
ProxyPassReverse /loadbalancer balancer://webcluster/
ProxyHTMLLogVerbose On
LogLevel Debug
Should set the timeout to 5 seconds. Take into account that this also means
that the connection
will be closed if your backend takes more than 5 seconds to generate a response
or if there are
pauses by the backend during sending the response that last more than 5 seconds.
Regards
Rüdiger