]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r468896 from trunk:
authorTakashi Sato <takashi@apache.org>
Fri, 6 Jun 2008 15:26:09 +0000 (15:26 +0000)
committerTakashi Sato <takashi@apache.org>
Fri, 6 Jun 2008 15:26:09 +0000 (15:26 +0000)
Add a usage example to mod_proxy_balancer.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@663981 13f79535-47bb-0310-9956-ffa450edef68

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

index b5eef4f320a47425ef3a9ec090b9182c09a210dd..2d7e43f433e4d38dc724c65075ca2c36a8e2d8c6 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 7644cd7635977d3efa02b2e86f1a36ac1344ef30..cec901779c2783a8bee64b0f0fad793ef75f1f4b 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