From: Christophe Jaillet Date: Fri, 10 Feb 2017 19:32:06 +0000 (+0000) Subject: Add syntax highlight + change separator in regex (# --> |) in order to please syntax... X-Git-Tag: 2.5.0-alpha~674 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=545d85acdaa384a25ee5184a8ee671a18ef5582f;p=apache Add syntax highlight + change separator in regex (# --> |) in order to please syntax highlighting engine git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1782508 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy_fcgi.xml b/docs/manual/mod/mod_proxy_fcgi.xml index cc619ec16a..fd756e6f06 100644 --- a/docs/manual/mod/mod_proxy_fcgi.xml +++ b/docs/manual/mod/mod_proxy_fcgi.xml @@ -273,14 +273,16 @@ If omitted, the variable is set to an empty string. -# A basic, unconditional override
-ProxyFCGISetEnvIf "true" PATH_INFO "/example"
-
-# Use an environment variable in the value
-ProxyFCGISetEnvIf "true" PATH_INFO "%{reqenv:SCRIPT_NAME}"
-
-# Use captures in the conditions and backreferences in the replacement
-ProxyFCGISetEnvIf "reqenv('PATH_TRANSLATED') =~ m#(/.*prefix)(\d+)(.*)#" PATH_TRANSLATED "$1$3"
+ +# A basic, unconditional override +ProxyFCGISetEnvIf "true" PATH_INFO "/example" + +# Use an environment variable in the value +ProxyFCGISetEnvIf "true" PATH_INFO "%{reqenv:SCRIPT_NAME}" + +# Use captures in the conditions and backreferences in the replacement +ProxyFCGISetEnvIf "reqenv('PATH_TRANSLATED') =~ m|(/.*prefix)(\d+)(.*)|" PATH_TRANSLATED "$1$3" +