From 5231ec6ed279135e608e0824f9fef60080ba25b8 Mon Sep 17 00:00:00 2001
From: Eric Covener
Date: Fri, 10 Feb 2017 15:29:33 +0000
Subject: [PATCH] negation, optional parms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1782483 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/mod/mod_proxy_fcgi.xml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
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.
--
2.50.1