From: Eric Covener Date: Sun, 1 Nov 2009 16:26:07 +0000 (+0000) Subject: document SetEnv "late" processing X-Git-Tag: 2.2.15~170 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=626e3d3361d3c352c64054ec0ba39e070b94987f;p=thirdparty%2Fapache%2Fhttpd.git document SetEnv "late" processing git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@831696 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_env.html.en b/docs/manual/mod/mod_env.html.en index 322036ee3a7..ef90db83ac9 100644 --- a/docs/manual/mod/mod_env.html.en +++ b/docs/manual/mod/mod_env.html.en @@ -87,6 +87,16 @@ SSI pages SetEnv SPECIAL_PATH /foo/bin

+

The internal environment variables set by this directive are set + after most early request processing directives are run, such as access + control and URI-to-filename mapping. If the environment variable you're + setting is meant as input into this early phase of processing such as the + RewriteRule directive, you should + instead set the environment variable with + SetEnvIf.

+
+ +
top

UnsetEnv Directive

diff --git a/docs/manual/mod/mod_env.xml b/docs/manual/mod/mod_env.xml index fbbfb246260..e7937674c0e 100644 --- a/docs/manual/mod/mod_env.xml +++ b/docs/manual/mod/mod_env.xml @@ -72,6 +72,16 @@ SSI pages Example SetEnv SPECIAL_PATH /foo/bin + +

The internal environment variables set by this directive are set + after most early request processing directives are run, such as access + control and URI-to-filename mapping. If the environment variable you're + setting is meant as input into this early phase of processing such as the + RewriteRule directive, you should + instead set the environment variable with + SetEnvIf.

+
+