Beware the trailing slash in mod_proxy_balancer (part 2)
It is a little tricky to prevent mod_proxy_balancer from adding a trailing slash.
This will redirect /MyService?wsdl to http://example.com:X0000/MyService/
This will redirect /MyService?wsdl to http://example.com:X0000/MyService?wsdl
see https://issues.apache.org/bugzilla/show_bug.cgi?id=39203
This will redirect /MyService?wsdl to http://example.com:X0000/MyService/
ProxyPass /MyService balancer://playlist_service_balancer
<Proxy balancer://playlist_service_balancer>
BalancerMember http://example.com:10000/MyService
BalancerMember http://example.com:20000/MyService
ProxySet lbmethod=byrequests
</Proxy>
This will redirect /MyService?wsdl to http://example.com:X0000/MyService?wsdl
ProxyPass /MyService balancer://playlist_service_balancer/MyService <Proxy balancer://playlist_service_balancer> BalancerMember http://example.com:10000/ BalancerMember http://example.com:20000/ ProxySet lbmethod=byrequests </Proxy>
see https://issues.apache.org/bugzilla/show_bug.cgi?id=39203