https://issues.apache.org/bugzilla/show_bug.cgi?id=48459
Summary: mod_proxy_balancer document seems to have a wrong
sample
Product: Apache httpd-2
Version: 2.3-HEAD
Platform: PC
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Documentation
AssignedTo: [email protected]
ReportedBy: [email protected]
This is similar to bug#48444.
mod_proxy_balancer document has the following sample;
<Proxy balancer://mycluster>
BalancerMember http://192.168.1.50:80
BalancerMember http://192.168.1.51:80
</Proxy>
ProxyPass /test balancer://mycluster/
This should be as follows,
<Proxy balancer://mycluster>
BalancerMember http://192.168.1.50:80
BalancerMember http://192.168.1.51:80
</Proxy>
ProxyPass /test balancer://mycluster
As this fix is not so trivial, I have checked how it works.
With the original configuration, when I did /test/abc request for the reverse
proxy,
the backend server received //abc request.
With the latter configuration, it works as expected.
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]