Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D875AFF0D for ; Tue, 30 Apr 2013 14:19:08 +0000 (UTC) Received: (qmail 93891 invoked by uid 500); 30 Apr 2013 14:19:08 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 93826 invoked by uid 500); 30 Apr 2013 14:19:08 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 93809 invoked by uid 99); 30 Apr 2013 14:19:08 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Apr 2013 14:19:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Apr 2013 14:19:06 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D2AF0238896F; Tue, 30 Apr 2013 14:18:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1477650 - in /httpd/httpd/branches/2.4.x: ./ STATUS modules/proxy/mod_proxy.c Date: Tue, 30 Apr 2013 14:18:46 -0000 To: cvs@httpd.apache.org From: jim@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130430141846.D2AF0238896F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jim Date: Tue Apr 30 14:18:46 2013 New Revision: 1477650 URL: http://svn.apache.org/r1477650 Log: Merge r1476680 from trunk: mod_proxy: Clarify the usage suggestion for BalancerInherit and ProxyPassInherit. Submitted by: minfrin Reviewed/backported by: jim Modified: httpd/httpd/branches/2.4.x/ (props changed) httpd/httpd/branches/2.4.x/STATUS httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy.c Propchange: httpd/httpd/branches/2.4.x/ ------------------------------------------------------------------------------ Merged /httpd/httpd/trunk:r1476680 Modified: httpd/httpd/branches/2.4.x/STATUS URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/STATUS?rev=1477650&r1=1477649&r2=1477650&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/STATUS (original) +++ httpd/httpd/branches/2.4.x/STATUS Tue Apr 30 14:18:46 2013 @@ -90,26 +90,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] - * mod_proxy: Allow balancers and ProxyPass to be server-specific, as - they should have been. Inheritance causes too many behind-the-scene - interactions to be reliable in a dynamic environ. We maintain the - old-default of inheritance. - trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1387603 - http://svn.apache.org/viewvc?view=revision&revision=1388029 - http://svn.apache.org/viewvc?view=revision&revision=1420124 - http://svn.apache.org/viewvc?view=revision&revision=1421288 - http://svn.apache.org/viewvc?view=revision&revision=1421912 - http://svn.apache.org/viewvc?view=revision&revision=1422943 - http://svn.apache.org/viewvc?view=revision&revision=1422980 - http://svn.apache.org/viewvc?view=revision&revision=1430575 - http://svn.apache.org/viewvc?view=revision&revision=1439404 - 2.4.x patch: http://people.apache.org/~jim/patches/proxypassinherit-v2.patch - +1: jim, druggeri - rjung: directive help text describes "on" and then says: "(Not recommended if - using the Balancer Manager)". Since "on" is the default, should we probably - say "(Setting to Off recommended if using the Balancer Manager)"? - minfrin: +1 (including http://svn.apache.org/r1476680 as per rjung) - * htpasswd: Add -v option trunk patches: https://svn.apache.org/r1465116 2.4.x patch: trunk patches work Modified: httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy.c URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy.c?rev=1477650&r1=1477649&r2=1477650&view=diff ============================================================================== --- httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy.c (original) +++ httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy.c Tue Apr 30 14:18:46 2013 @@ -2330,10 +2330,10 @@ static const command_rec proxy_cmds[] = "on if the balancer should persist changes on reboot/restart made via the Balancer Manager"), AP_INIT_FLAG("BalancerInherit", set_inherit, NULL, RSRC_CONF, "on if this server should inherit Balancers and Workers defined in the main server " - "(Not recommended if using the Balancer Manager for dynamic changes)"), + "(Setting to off recommended if using the Balancer Manager)"), AP_INIT_FLAG("ProxyPassInherit", set_ppinherit, NULL, RSRC_CONF, "on if this server should inherit all ProxyPass directives defined in the main server " - "(Not recommended if using the Balancer Manager for dynamic changes)"), + "(Setting to off recommended if using the Balancer Manager)"), AP_INIT_TAKE1("ProxyStatus", set_status_opt, NULL, RSRC_CONF, "Configure Status: proxy status to one of: on | off | full"), AP_INIT_RAW_ARGS("ProxySet", set_proxy_param, NULL, RSRC_CONF|ACCESS_CONF,