Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 37541 invoked from network); 10 Jul 2008 13:28:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Jul 2008 13:27:59 -0000 Received: (qmail 68210 invoked by uid 500); 10 Jul 2008 13:28:00 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 68150 invoked by uid 500); 10 Jul 2008 13:27:59 -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 68141 invoked by uid 99); 10 Jul 2008 13:27:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jul 2008 06:27:59 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Thu, 10 Jul 2008 13:27:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E2B7823889FB; Thu, 10 Jul 2008 06:27:38 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r675568 - /httpd/httpd/trunk/docs/manual/mod/mod_access_compat.xml Date: Thu, 10 Jul 2008 13:27:38 -0000 To: cvs@httpd.apache.org From: takashi@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080710132738.E2B7823889FB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: takashi Date: Thu Jul 10 06:27:37 2008 New Revision: 675568 URL: http://svn.apache.org/viewvc?rev=675568&view=rev Log: note negation of env-var (env=!) PR: 44901 Modified: httpd/httpd/trunk/docs/manual/mod/mod_access_compat.xml Modified: httpd/httpd/trunk/docs/manual/mod/mod_access_compat.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_access_compat.xml?rev=675568&r1=675567&r2=675568&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_access_compat.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_access_compat.xml Thu Jul 10 06:27:37 2008 @@ -81,8 +81,8 @@ Allow Controls which hosts can access an area of the server - Allow from all|host|env=env-variable -[host|env=env-variable] ... + Allow from all|host|env=[!]env-variable +[host|env=[!]env-variable] ... directory.htaccess Limit @@ -180,7 +180,10 @@ href="../env.html">environment variable. When Allow from env=env-variable is specified, then the request is allowed access if the environment variable env-variable - exists. The server provides the ability to set environment + exists. When Allow from env=!env-variable is + specified, then the request is allowed access if the environment + variable env-variable doesn't exist. + The server provides the ability to set environment variables in a flexible way based on characteristics of the client request using the directives provided by mod_setenvif. Therefore, this directive can be @@ -209,8 +212,8 @@ Deny Controls which hosts are denied access to the server - Deny from all|host|env=env-variable -[host|env=env-variable] ... + Deny from all|host|env=[!]env-variable +[host|env=[!]env-variable] ... directory.htaccess Limit