Hi Guys, I have been facing problem with load balancer on apache. I use Apache (2.2.4) as a Load BAlancer (using mod_proxy and proxy_balancer) for two Back End web server running on Tomact6.0 Here is a brief Apache configuration which works with http connections ProxyPass / balancer://mycluster/ ProxyPassReverse / balancer://mycluster/ ProxyPreserveHost on <Proxy balancer://mycluster/> BalancerMember http://10.155.155.14 route=wd4 loadfactor=50 BalancerMember http://10.155.155.15 route=wd5 loadfactor=50 </Proxy> <Location /balancer-manager> SetHandler balancer-manager </Location> Above configuration (httpd.conf) works when back end servers use only http. Now back end servers have been configured to require https connection for login but rest of the connections go over http. Unfortunately configuration above does not work now. When I hit the LB address for example www.mylb.com I receive https://www.mylb.com and the browser responds with unable to connect to www.mylb.com server. If I hit the back end server directly (i.e entering the http address) I am redirected to the https and then I am asked to log in. When I am already logged communication goes over http. Logs say nothing .. any ideas? It seems for me I missed something configuring load balancer on Apache ... but not sure .. thanks a lot.