diff options
author | Jim Jagielski <jim@apache.org> | 2013-09-17 20:31:58 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2013-09-17 20:31:58 +0200 |
commit | f4437505231dba5f99ece4e06ff4392037770fe2 (patch) | |
tree | 677b047f13272737a1c7efda7e2298695ccb0ea6 | |
parent | Add note to balancer manager whether changes will/will not survive a restart (diff) | |
download | apache2-f4437505231dba5f99ece4e06ff4392037770fe2.tar.xz apache2-f4437505231dba5f99ece4e06ff4392037770fe2.zip |
More cool info ;)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1524158 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/proxy/mod_proxy_balancer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index ddbbb9ed30..5fd9e1513c 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1466,6 +1466,10 @@ static int balancer_handler(request_rec *r) ap_get_server_built(), "</dt>\n", NULL); ap_rvputs(r, "<dt>Balancer changes will ", conf->bal_persist ? "" : "NOT ", "be persisted on restart.</dt>", NULL); + ap_rvputs(r, "<dt>Balancers are ", conf->inherit ? "" : "NOT ", + "inherited from main server.</dt>", NULL); + ap_rvputs(r, "<dt>ProxyPass settings are ", conf->ppinherit ? "" : "NOT ", + "inherited from main server.</dt>", NULL); ap_rputs("</dl>\n", r); balancer = (proxy_balancer *)conf->balancers->elts; for (i = 0; i < conf->balancers->nelts; i++) { |