]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
trailing whitespace
authorJim Jagielski <jim@apache.org>
Wed, 8 Feb 2017 14:53:06 +0000 (14:53 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 8 Feb 2017 14:53:06 +0000 (14:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1782194 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_fcgi.xml

index bbe4813aa582afc405912056f903123cec8ac601..6887fbec52475c278aae3060e8c3da3e174ad2c2 100644 (file)
@@ -220,7 +220,7 @@ what some generic FastCGI applications would read as their script input, but
 PHP-FPM would strip the prefix then remember it was talking to Apache.  In
 2.4.21 through 2.4.25, this prefix was automatically stripped by the server,
 breaking the ability of PHP-FPM to detect and interoperate with Apache in some
-scenarios.</p> 
+scenarios.</p>
 </usage>
 </directivesynopsis>
 
@@ -250,26 +250,26 @@ output they directly produce.</p>
   <li>PATH_TRANSLATED</li>
 </ul>
 
-<p>This directive allows the environment variables above, or any others of 
+<p>This directive allows the environment variables above, or any others of
 interest, to be overridden.  This directive is evaluated after the initial
 values for these variables are set, so they can be used as input into both
 the condition expressions and value expressions.</p>
 <p>Parameter syntax:</p>
 <dl>
-<dt>conditional-expression</dt> 
+<dt>conditional-expression</dt>
 <dd>Specifies an expression that controls whether the environmen variable that
-   follows will be modified.  For information on the expression syntax, see 
-   the examples that follow or the full specification at the 
+   follows will be modified.  For information on the expression syntax, see
+   the examples that follow or the full specification at the
    <a href="../expr.html">ap_expr</a> documentation.
    </dd>
-<dt>environment-variable-name</dt> 
+<dt>environment-variable-name</dt>
 <dd> Specifies the CGI environment variable to change,
    such as PATH_INFO.</dd>
 <dt>value-expression</dt>
 <dd>Specifies the replacement value for the preceding environment variable.  Backreferences, such as "$1",
 can be included from regular expression captures in <var>conditional-expression</var></dd>
 </dl>
-  
+
 <example>
 # A basic, unconditional override<br/>
 ProxyFCGISetEnvIf "true" PATH_INFO "/example"<br/>