]> granicus.if.org Git - apache/commitdiff
Add a usage example to mod_proxy_balancer.
authorRich Bowen <rbowen@apache.org>
Sun, 29 Oct 2006 13:08:49 +0000 (13:08 +0000)
committerRich Bowen <rbowen@apache.org>
Sun, 29 Oct 2006 13:08:49 +0000 (13:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@468896 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_balancer.html.en
docs/manual/mod/mod_proxy_balancer.xml

index dbe92e73c7121c6613b7ed1b4bff72bab7d981bc..61b361aa8a49030363698bb267380260add7a12c 100644 (file)
@@ -51,6 +51,7 @@
 <h3>Topics</h3>
 <ul id="topics">
 <li><img alt="" src="../images/down.gif" /> <a href="#scheduler">Load balancer scheduler algorithm</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#example">Example of a balancer configuration</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#requests">Request Counting Algorithm</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#traffic">Weighted Traffic Counting Algorithm</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#environment">Exported Environment Variables</a></li>
 
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
+<h2><a name="example" id="example">Example of a balancer configuration</a></h2>
+       
+       <p>Before we dive into the technical details, here's an example of
+       how you might use <code class="module"><a href="../mod/mod_proxy_balancer.html">mod_proxy_balancer</a></code> to provide
+       load balancing between two back-end servers:
+       </p>
+
+       <div class="example"><p><code>
+       &lt;Proxy balancer://mycluster&gt;<br />
+               BalancerMember http://192.168.1.50:80<br />
+               BalancerMember http://192.168.1.51:80<br />
+       &lt;/Proxy&gt;<br />
+       ProxyPass /test balancer://mycluster/
+       </code></p></div>
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
 <h2><a name="requests" id="requests">Request Counting Algorithm</a></h2>
     
     <p>Enabled via <code>lbmethod=byrequests</code>, the idea behind this
index 532fc92fcb23029e4299ad147ef2ab0c12686424..de46af3d6fa0e7ab638e513c4899bc183ac7b2dd 100644 (file)
 
 </section>
 
+<section id="example">
+       <title>Example of a balancer configuration</title>
+       <p>Before we dive into the technical details, here's an example of
+       how you might use <module>mod_proxy_balancer</module> to provide
+       load balancing between two back-end servers:
+       </p>
+
+       <example>
+       &lt;Proxy balancer://mycluster&gt;<br />
+               BalancerMember http://192.168.1.50:80<br />
+               BalancerMember http://192.168.1.51:80<br />
+       &lt;/Proxy&gt;<br />
+       ProxyPass /test balancer://mycluster/
+       </example>
+</section>
+
 <section id="requests">
     <title>Request Counting Algorithm</title>
     <p>Enabled via <code>lbmethod=byrequests</code>, the idea behind this