Fix some formating. (extra '.', missing <code>)
authorChristophe Jaillet <jailletc36@apache.org>
Thu, 19 Apr 2018 20:35:21 +0000 (20:35 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Thu, 19 Apr 2018 20:35:21 +0000 (20:35 +0000)
Fix the number of available load balancer scheduler algorithms and add a link to the corresponding module. (lbmethod_heartbeat was missing in the list)

(r1829613 in trunk + some formating (trailing space and alignment) to synch with trunk)

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

docs/manual/mod/mod_lbmethod_byrequests.xml
docs/manual/mod/mod_lbmethod_bytraffic.xml
docs/manual/mod/mod_lbmethod_heartbeat.xml
docs/manual/mod/mod_proxy_balancer.xml

index 41be7d0e7a75788b933d59cd603878b04ed48810..66de7a31737a9f76e02be99fc3675f103beceb69 100644 (file)
@@ -33,7 +33,7 @@
 <summary>
 <p>This module does not provide any configuration directives of its own.
 It requires the services of <module>mod_proxy_balancer</module>, and
-provides the <code>byrequests</code> load balancing method..</p>
+provides the <code>byrequests</code> load balancing method.</p>
 </summary>
 <seealso><module>mod_proxy</module></seealso>
 <seealso><module>mod_proxy_balancer</module></seealso>
index ddf982dbba5225013e1a31f07104a0f820ee146f..e86018618556fbbeb9e76d0b6bb4b571ff647148 100644 (file)
@@ -33,7 +33,7 @@
 <summary>
 <p>This module does not provide any configuration directives of its own.
 It requires the services of <module>mod_proxy_balancer</module>, and
-provides the <code>bytraffic</code> load balancing method..</p>
+provides the <code>bytraffic</code> load balancing method.</p>
 </summary>
 <seealso><module>mod_proxy</module></seealso>
 <seealso><module>mod_proxy_balancer</module></seealso>
index 9dd28f00122c5ee3c9154ea3f7e01c32c5f83721..761fb594cebe328178299e7dfa4754feab2613b5 100644 (file)
 <compatibility>Available in version 2.3 and later</compatibility>
 
 <summary>
-<p>lbmethod=heartbeat uses the services of <module
+<p><code>lbmethod=heartbeat</code> uses the services of <module
 >mod_heartmonitor</module> to balance between origin servers that are providing
 heartbeat info via the <module>mod_heartbeat</module> module.</p>
 
 <p> This modules load balancing algorithm favors servers with more ready (idle)
-capacity over time, but does not select the server with the most ready capacity 
-every time.  Servers that have 0 active clients are penalized, with the 
+capacity over time, but does not select the server with the most ready capacity
+every time.  Servers that have 0 active clients are penalized, with the
 assumption that they are not fully initialized.</p>
 </summary>
 
index 3e040849ba22a840ba16b47e228a85582b1d57ea..add9756a1578531971ae5b36733bdf26b0354f7c 100644 (file)
 
 <section id="scheduler">
     <title>Load balancer scheduler algorithm</title>
-    <p>At present, there are 3 load balancer scheduler algorithms available
-    for use: Request Counting, Weighted Traffic Counting and Pending Request
-    Counting. These are controlled via the <code>lbmethod</code> value of
+    <p>At present, there are 4 load balancer scheduler algorithms available
+    for use: Request Counting (<module>mod_lbmethod_byrequests</module>),
+    Weighted Traffic Counting (<module>mod_lbmethod_bytraffic</module>),
+    Pending Request Counting (<module>mod_lbmethod_bybusyness</module>) and
+    Heartbeat Traffic Counting (<module>mod_lbmethod_heartbeat</module>).
+    These are controlled via the <code>lbmethod</code> value of
     the Balancer definition. See the <directive module="mod_proxy">ProxyPass</directive>
     directive for more information, especially regarding how to
     configure the Balancer and BalancerMembers.</p>
     BalancerMember "http://192.168.1.50:80"
     BalancerMember "http://192.168.1.51:80"
 &lt;/Proxy&gt;
-ProxyPass "/test" "balancer://mycluster"
+ProxyPass        "/test" "balancer://mycluster"
 ProxyPassReverse "/test" "balancer://mycluster"
     </highlight>
 
@@ -122,7 +125,7 @@ Header add Set-Cookie "ROUTEID=.%{BALANCER_WORKER_ROUTE}e; path=/" env=BALANCER_
     BalancerMember "http://192.168.1.51:80" route=2
     ProxySet stickysession=ROUTEID
 &lt;/Proxy&gt;
-ProxyPass "/test" "balancer://mycluster"
+ProxyPass        "/test" "balancer://mycluster"
 ProxyPassReverse "/test" "balancer://mycluster"
     </highlight>
 </section>