From: Jim Jagielski Date: Wed, 8 Aug 2007 19:13:15 +0000 (+0000) Subject: ProxyStatus now has docs :) X-Git-Tag: 2.2.5~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc41458816faeda23da5df11c285e24061c0c8b6;p=thirdparty%2Fapache%2Fhttpd.git ProxyStatus now has docs :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@563992 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml index ddb9cde6f7a..a3ff653636c 100644 --- a/docs/manual/mod/mod_proxy.xml +++ b/docs/manual/mod/mod_proxy.xml @@ -1294,4 +1294,25 @@ header for proxied requests + +ProxyStatus +Show Proxy LoadBalancer status in mod_status +ProxyStatus Off|On|Full +ProxyStatus Off +server config +virtual host + +Available in version 2.2 and later + + +

This directive determines whether or not proxy + loadbalancer status data is displayed via the mod_status + server-status page.

+ Note +

Full is synonymous with On

+
+ +
+
+ diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 63a4c98eeb0..71c78a70331 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -1513,7 +1513,7 @@ static const char* psf->proxy_status = status_full; else { return "ProxyStatus must be one of: " - "off | on | block"; + "off | on | full"; } psf->proxy_status_set = 1;