Author: takashi
Date: Tue Jan 5 14:55:25 2010
New Revision: 896073
URL: http://svn.apache.org/viewvc?rev=896073&view=rev
Log:
Similar to r893874, fix the ProxyPass example accoding to the trailing slash rule.
PR: 48459
Modified:
httpd/httpd/trunk/docs/manual/mod/mod_proxy_balancer.xml
Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_balancer.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_balancer.xml?rev=896073&r1=896072&r2=896073&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_balancer.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_balancer.xml Tue Jan 5 14:55:25 2010
@@ -78,7 +78,7 @@
BalancerMember http://192.168.1.50:80<br />
BalancerMember http://192.168.1.51:80<br />
</Proxy><br />
- ProxyPass /test balancer://mycluster/
+ ProxyPass /test balancer://mycluster
</example>
<p>Another example of how to provide load balancing with stickyness
@@ -94,7 +94,7 @@
BalancerMember http://192.168.1.51:80 route=2<br />
ProxySet stickysession=ROUTEID<br />
</Proxy><br />
- ProxyPass /test balancer://mycluster/
+ ProxyPass /test balancer://mycluster
</example>
</section>
|