On Mar 27, 2006, at 2:55 PM, Ruediger Pluem wrote:
<Proxy balancer://fill>
BalancerMember http://server1:80 route=server1
BalancerMember http://server2:80 route=server2
</Proxy>
<VirtualHost A>
...
ProxyPass /path balancer://fill/ stickysession=Sticky
</VirtualHost>
<VirtualHost B>
...
ProxyPass /path balancer://fill/ stickysession=Sticky
</VirtualHost>
Then according to my thoughts virtualhost A and B would effectively
share the
balancer from the main server. As far as I understood this is a
situation
you wanted to avoid.
What we needed to avoid was the case where a balancer defined in
VhostA leaked into VhostB. You should not be able to define
balancers in one Vhost and have them available in others; it's
certainly a weird regression. Now *inheriting* one from the main
server does make sense, kindof, and that's what we're trying
to do here.