On Mar 22, 2006, at 10:58 AM, Akins, Brian wrote:
This works:
<VirtualHost *>
...
<Proxy balancer://fill>
BalancerMember http://server1:80 route=server1
BalancerMember http://server2:80 route=server2
</Proxy>
ProxyPass /path balancer://fill/ stickysession=Sticky
</VirtualHost>
This does not:
<Proxy balancer://fill>
BalancerMember http://server1:80 route=server1
BalancerMember http://server2:80 route=server2
</Proxy>
<VirtualHost *>
...
ProxyPass /path balancer://fill/ stickysession=Sticky
</VirtualHost>
I want to be able to use same balancer in multiple vhosts.
This is actually that way by design, iirc. I've no
real issues with it being Vhost specific or inheritable.
So if others think it's worthwhile having the above
functionality, I'm +1 for it and would work on something
to implement that.