You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2010/04/15 18:18:01 UTC

svn commit: r934470 - in /httpd/httpd/trunk/docs/manual/mod: mod_proxy_fcgi.xml mod_proxy_scgi.xml

Author: trawick
Date: Thu Apr 15 16:18:01 2010
New Revision: 934470

URL: http://svn.apache.org/viewvc?rev=934470&view=rev
Log:
improve balancer references in the examples

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.xml
    httpd/httpd/trunk/docs/manual/mod/mod_proxy_scgi.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.xml?rev=934470&r1=934469&r2=934470&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_fcgi.xml Thu Apr 15 16:18:01 2010
@@ -64,8 +64,11 @@
       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 />

Modified: httpd/httpd/trunk/docs/manual/mod/mod_proxy_scgi.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_proxy_scgi.xml?rev=934470&r1=934469&r2=934470&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_proxy_scgi.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_proxy_scgi.xml Thu Apr 15 16:18:01 2010
@@ -58,8 +58,11 @@
       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 />