diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-05-10 09:09:36 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-05-10 09:09:36 +0200 |
commit | da6beff1dca51051e3b2af6bffce43c8caea0a10 (patch) | |
tree | c9eff3867bea00afa91c95260b0f5d162238c795 /docs/manual/mod/mod_proxy_balancer.xml | |
parent | Remove AuthzProviderAlias from the regular list of directives, so it doesn't ... (diff) | |
download | apache2-da6beff1dca51051e3b2af6bffce43c8caea0a10.tar.xz apache2-da6beff1dca51051e3b2af6bffce43c8caea0a10.zip |
Fix up an example that was missing highlighting
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1336501 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_proxy_balancer.xml')
-rw-r--r-- | docs/manual/mod/mod_proxy_balancer.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/manual/mod/mod_proxy_balancer.xml b/docs/manual/mod/mod_proxy_balancer.xml index f8f097ec6a..692a110bcb 100644 --- a/docs/manual/mod/mod_proxy_balancer.xml +++ b/docs/manual/mod/mod_proxy_balancer.xml @@ -248,13 +248,13 @@ ProxyPassReverse /test balancer://mycluster <p>Finally you can support cookies and URL encoding at the same time, by configuring the name of the cookie and the name of the URL parameter separated by a vertical bar (<code>|</code>) as in the following example:</p> - <example> - ProxyPass /test balancer://mycluster stickysession=JSESSIONID|jsessionid scolonpathdelim=On<br /> - <Proxy balancer://mycluster><br /> - BalancerMember http://192.168.1.50:80 route=node1<br /> - BalancerMember http://192.168.1.51:80 route=node2<br /> - </Proxy><br /> - </example> + <highlight language="config"> +ProxyPass /test balancer://mycluster stickysession=JSESSIONID|jsessionid scolonpathdelim=On +<Proxy balancer://mycluster> + BalancerMember http://192.168.1.50:80 route=node1 + BalancerMember http://192.168.1.51:80 route=node2 +</Proxy> + </highlight> <p>If the cookie and the request parameter both provide routing information for the same request, the information from the request parameter is used.</p> </section> |