From: Eric Covener
Date: Fri, 10 Feb 2017 15:29:33 +0000 (+0000)
Subject: negation, optional parms
X-Git-Tag: 2.5.0-alpha~675
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5231ec6ed279135e608e0824f9fef60080ba25b8;p=apache
negation, optional parms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1782483 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/mod/mod_proxy_fcgi.xml b/docs/manual/mod/mod_proxy_fcgi.xml
index 6887fbec52..cc619ec16a 100644
--- a/docs/manual/mod/mod_proxy_fcgi.xml
+++ b/docs/manual/mod/mod_proxy_fcgi.xml
@@ -228,8 +228,8 @@ scenarios.
ProxyFCGISetEnvIf
Allow variables sent to FastCGI servers to be fixed up
ProxyFCGISetEnvIf conditional-expression
- environment-variable-name
- value-expression
+ [!]environment-variable-name
+ [value-expression]
server config
virtual hostdirectory
.htaccess
@@ -264,10 +264,12 @@ the condition expressions and value expressions.
environment-variable-name
Specifies the CGI environment variable to change,
- such as PATH_INFO.
+ such as PATH_INFO. If preceded by an exclamation point, the variable
+ will be unset.
value-expression
Specifies the replacement value for the preceding environment variable. Backreferences, such as "$1",
-can be included from regular expression captures in conditional-expression
+can be included from regular expression captures in conditional-expression.
+If omitted, the variable is set to an empty string.