diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-04-27 12:48:14 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-04-27 12:48:14 +0200 |
commit | c147c38412dcb7fd928062dd3bf849a9f7c0402f (patch) | |
tree | 2e097eb59d9fcf628c022af360cedc04cc039340 /docs/manual/mod/mod_proxy_scgi.html.en | |
parent | Add AuthzProviderAlias as a valid section directive (diff) | |
download | apache2-c147c38412dcb7fd928062dd3bf849a9f7c0402f.tar.xz apache2-c147c38412dcb7fd928062dd3bf849a9f7c0402f.zip |
xforms, again
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331347 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_proxy_scgi.html.en')
-rw-r--r-- | docs/manual/mod/mod_proxy_scgi.html.en | 32 |
1 files changed, 21 insertions, 11 deletions
diff --git a/docs/manual/mod/mod_proxy_scgi.html.en b/docs/manual/mod/mod_proxy_scgi.html.en index 6db9a42f51..c5adbdb482 100644 --- a/docs/manual/mod/mod_proxy_scgi.html.en +++ b/docs/manual/mod/mod_proxy_scgi.html.en @@ -68,7 +68,10 @@ enable <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code> and <code class="module"><a href="../mod/mod_proxy_scgi.html">mod_proxy_scgi</a></code>.</p> <div class="example"><h3>Simple gateway</h3><p><code> + <pre class="prettyprint lang-config"> ProxyPass /scgi-bin/ scgi://localhost:4000/ + </pre> + </code></p></div> <p>The balanced gateway needs <code class="module"><a href="../mod/mod_proxy_balancer.html">mod_proxy_balancer</a></code> and @@ -78,13 +81,14 @@ default, and will be used for this example configuration.</p> <div class="example"><h3>Balanced gateway</h3><p><code> - ProxyPass /scgi-bin/ balancer://somecluster/<br /> - <Proxy balancer://somecluster/><br /> - <span class="indent"> - BalancerMember scgi://localhost:4000/<br /> - BalancerMember scgi://localhost:4001/<br /> - </span> - </Proxy> + <pre class="prettyprint lang-config"> +ProxyPass /scgi-bin/ balancer://somecluster/ +<Proxy balancer://somecluster/> + BalancerMember scgi://localhost:4000/ + BalancerMember scgi://localhost:4001/ +</Proxy> + </pre> + </code></p></div> </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> @@ -127,7 +131,10 @@ backend</td></tr> feature.</p> <div class="example"><h3>Example</h3><p><code> + <pre class="prettyprint lang-config"> ProxySCGIInternalRedirect Off + </pre> + </code></p></div> </div> @@ -165,11 +172,14 @@ header</td></tr> </dl> <div class="example"><h3>Example</h3><p><code> - # Use the default header (X-Sendfile)<br /> - ProxySCGISendfile On<br /> - <br /> - # Use a different header<br /> + <pre class="prettyprint lang-config"> + # Use the default header (X-Sendfile) + ProxySCGISendfile On + + # Use a different header ProxySCGISendfile X-Send-Static + </pre> + </code></p></div> </div> |