From d4cdbb0018eee1764be014af6bbc6679878f3ea1 Mon Sep 17 00:00:00 2001 From: Takashi Sato Date: Thu, 10 Jul 2008 13:27:37 +0000 Subject: [PATCH] note negation of env-var (env=!) PR: 44901 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@675568 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_access_compat.xml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/manual/mod/mod_access_compat.xml b/docs/manual/mod/mod_access_compat.xml index 2d574d78ba..98e54ad5b3 100644 --- a/docs/manual/mod/mod_access_compat.xml +++ b/docs/manual/mod/mod_access_compat.xml @@ -81,8 +81,8 @@ have been deprecated by the new authz refactoring. Please see 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 @@ server 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 @@ server 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 -- 2.40.0