]> granicus.if.org Git - apache/commitdiff
improve balancer references in the examples
authorJeff Trawick <trawick@apache.org>
Thu, 15 Apr 2010 16:18:01 +0000 (16:18 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 15 Apr 2010 16:18:01 +0000 (16:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@934470 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_fcgi.xml
docs/manual/mod/mod_proxy_scgi.xml

index f6c37126471a0d1721377e124ee0b74858cf4809..61853c13dba71804e921ad4522d259f6fcb3c50c 100644 (file)
       ProxyPass /myapp/ fcgi://localhost:4000/
     </example>
 
-    <p>The balanced gateway needs <module>mod_proxy_balancer</module> in
-    addition to the already mentioned proxy modules.</p>
+    <p>The balanced gateway needs <module>mod_proxy_balancer</module> and
+    at least one load balancer algorithm module, such as 
+    <module>mod_lbmethod_byrequests</module>, in addition to the proxy
+    modules listed above.  <module>mod_lbmethod_byrequests</module> is the
+    default.</p>
 
     <example><title>Balanced gateway</title>
     ProxyPass /myapp/ balancer://myappcluster/<br />
index a0657db08a5b9488b437059f1d09592265b68ecf..7ae27cb22572f9e65871b7c532ef2a8b1afcefaf 100644 (file)
       ProxyPass /scgi-bin/ scgi://localhost:4000/
     </example>
 
-    <p>The balanced gateway needs <module>mod_proxy_balancer</module> in
-    addition to the already mentioned proxy modules.</p>
+    <p>The balanced gateway needs <module>mod_proxy_balancer</module> and
+    at least one load balancer algorithm module, such as 
+    <module>mod_lbmethod_byrequests</module>, in addition to the proxy
+    modules listed above.  <module>mod_lbmethod_byrequests</module> is the
+    default, and will be used for this example configuration.</p>
 
     <example><title>Balanced gateway</title>
     ProxyPass /scgi-bin/ balancer://somecluster/<br />