0

I am looking for something like:

<Proxy balancer://myset>
BalancerMember http://www.example.com:8080 timeout=1
</Proxy>

But I don't want to specify what urls go to that backend at all --- this is controlled else where --- like RewriteCond on certain ENV being set.

Can this be done?

Superziyi
  • 123
  • 4

1 Answers1

1

You can set options for a particular proxy connection with the ProxySet directive. It looks like you created the balancer group just to try to set the timout, so, depending on the rest of your configuration, something like:

ProxySet http://www.example.com:8080 timeout=1
Unbeliever
  • 2,336
  • 1
  • 10
  • 19