Our proxy configuration (in httpd.conf) for sending requests for 2 JBoss instances is given below based on mod_proxy_balancer
<Proxy balancer:
Allow from all
BalancerMember http:
BalancerMember http:
</Proxy>
ProxyPass /app balancer:
ProxyPassReverse /app http:
ProxyPassReverse /app http:
How to enable sticky load balancing based on session identifiers. Should I set the following flag as part of the proxy declaration? This does not seem to have any effect. How do I debug to make sure this works fine.
SetEnv BALANCER_SESSION_STICKY JSESSIONID
source
share