Hi, I am trying to define several load balancers each working on different ports on same apache http server. For example, calling the apache http server on 8001 should load balance on servers a and b, while calls made to port 8002 should be forwarded to c and d. How can I achieve this?
Thanks... <Proxy http://127.0.0.1:8001/ > BalancerMember http://10.x.x.x:5101 BalancerMember http://10.x.x.x:5102 </Proxy> ProxyPass ???? <Proxy http://127.0.0.1:8002/ > BalancerMember http://10.x.x.x:5103 BalancerMember http://10.x.x.x:5104 </Proxy> ProxyPass ????