How to Exclude an URL for Apache Mod_proxy?
Posted
by
Mughil
on Server Fault
See other posts from Server Fault
or by Mughil
Published on 2013-06-25T13:27:41Z
Indexed on
2013/06/26
16:23 UTC
Read the original article
Hit count: 208
We have two Apache server as front-end and 4 tomcat server as back-end configured using mod_proxy module as load balancer. Now, we want to exclude an single tomcat url from the mod_proxy load balancer. Is there any way or rule to exclude?
Proxy Balancer Setting:
<Proxy balancer://backend-cluster1>
BalancerMember http://10.0.0.1:8080 loadfactor=1 route=test1 retry=10
BalancerMember http://10.0.0.2:8080 loadfactor=1 route=test2 retry=10
</Proxy>
© Server Fault or respective owner