]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix some broken links already fixed in trunk. (incorrect module names in <directive>)
authorChristophe Jaillet <jailletc36@apache.org>
Mon, 7 Jan 2019 20:30:00 +0000 (20:30 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Mon, 7 Jan 2019 20:30:00 +0000 (20:30 +0000)
Synch a bit with trunk

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1850684 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_proxy_scgi.xml

index 79b4293c3897fbc8d2d2e9aa2b5af7fde38543bb..4ed1a613a16610d5e9a15361c3acd8b82714c326 100644 (file)
@@ -56,7 +56,7 @@
 
     <example><title>Simple gateway</title>
     <highlight language="config">
-      ProxyPass /scgi-bin/ scgi://localhost:4000/
+ProxyPass "/scgi-bin/" "scgi://localhost:4000/"
       </highlight>
     </example>
 
@@ -90,8 +90,8 @@ ProxyPass "/scgi-bin/" "balancer://somecluster/"
         and <var>Script-URI</var> and be compliant with RFC 3875 section 3.3.
         If instead you need <module>mod_proxy_scgi</module> to generate
         a "best guess" for <var>PATH_INFO</var>, set this env-var.  The
-        variable must be set before <directive module="env">SetEnv</directive>
-        is effective.  <directive module="setenv">SetEnvIf</directive> can be
+        variable must be set before <directive module="mod_env">SetEnv</directive>
+        is effective.  <directive module="mod_setenvif">SetEnvIf</directive> can be
         used instead: <code>SetEnvIf Request_URI . proxy-scgi-pathinfo</code>
         </dd>
     </dl>
@@ -133,7 +133,7 @@ header</description>
     <highlight language="config">
 # Use the default header (X-Sendfile)
 ProxySCGISendfile On
-    
+
 # Use a different header
 ProxySCGISendfile X-Send-Static
     </highlight>