summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_proxy_balancer.xml
diff options
context:
space:
mode:
authorDaniel Gruno <humbedooh@apache.org>2012-05-10 09:09:36 +0200
committerDaniel Gruno <humbedooh@apache.org>2012-05-10 09:09:36 +0200
commitda6beff1dca51051e3b2af6bffce43c8caea0a10 (patch)
treec9eff3867bea00afa91c95260b0f5d162238c795 /docs/manual/mod/mod_proxy_balancer.xml
parentRemove AuthzProviderAlias from the regular list of directives, so it doesn't ... (diff)
downloadapache2-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.xml14
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 />
- &lt;Proxy balancer://mycluster&gt;<br />
- BalancerMember http://192.168.1.50:80 route=node1<br />
- BalancerMember http://192.168.1.51:80 route=node2<br />
- &lt;/Proxy&gt;<br />
- </example>
+ <highlight language="config">
+ProxyPass /test balancer://mycluster stickysession=JSESSIONID|jsessionid scolonpathdelim=On
+&lt;Proxy balancer://mycluster&gt;
+ BalancerMember http://192.168.1.50:80 route=node1
+ BalancerMember http://192.168.1.51:80 route=node2
+&lt;/Proxy&gt;
+ </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>