You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2007/08/08 21:13:17 UTC

svn commit: r563992 - in /httpd/httpd/branches/2.2.x: docs/manual/mod/mod_proxy.xml modules/proxy/mod_proxy.c

Author: jim
Date: Wed Aug  8 12:13:15 2007
New Revision: 563992

URL: http://svn.apache.org/viewvc?view=rev&rev=563992
Log:
ProxyStatus now has docs :)

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_proxy.xml
    httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_proxy.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_proxy.xml?view=diff&rev=563992&r1=563991&r2=563992
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_proxy.xml (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_proxy.xml Wed Aug  8 12:13:15 2007
@@ -1294,4 +1294,25 @@
 </usage>
 </directivesynopsis>
 
+<directivesynopsis>
+<name>ProxyStatus</name>
+<description>Show Proxy LoadBalancer status in mod_status</description>
+<syntax>ProxyStatus Off|On|Full</syntax>
+<default>ProxyStatus Off</default>
+<contextlist><context>server config</context>
+<context>virtual host</context>
+</contextlist>
+<compatibility>Available in version 2.2 and later</compatibility>
+
+<usage>
+    <p>This directive determines whether or not proxy
+    loadbalancer status data is displayed via the <module>mod_status</module>
+    server-status page.</p>
+    <note><title>Note</title>
+      <p><strong>Full</strong> is synonymous with <strong>On</strong></p>
+    </note>
+
+</usage>
+</directivesynopsis>
+
 </modulesynopsis>

Modified: httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c?view=diff&rev=563992&r1=563991&r2=563992
==============================================================================
--- httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c (original)
+++ httpd/httpd/branches/2.2.x/modules/proxy/mod_proxy.c Wed Aug  8 12:13:15 2007
@@ -1513,7 +1513,7 @@
         psf->proxy_status = status_full;
     else {
         return "ProxyStatus must be one of: "
-            "off | on | block";
+            "off | on | full";
     }
 
     psf->proxy_status_set = 1;