diff options
author | Luca Toscano <elukey@apache.org> | 2017-02-03 17:29:37 +0000 |
---|---|---|
committer | Luca Toscano <elukey@apache.org> | 2017-02-03 17:29:37 +0000 |
commit | 195d89f2af26cc4e291828668433dcbde4c7b5ca (patch) | |
tree | a025f4ee74c69db92bcc13004994975676640229 /docs/manual/mod/mod_proxy.html.en | |
parent | 7588e207b6934fc90665a61cda326318b40ae947 (diff) | |
download | httpd-195d89f2af26cc4e291828668433dcbde4c7b5ca.tar.gz |
Documentation rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1781581 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_proxy.html.en')
-rw-r--r-- | docs/manual/mod/mod_proxy.html.en | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en index 8f3543fe24..912fbc88b7 100644 --- a/docs/manual/mod/mod_proxy.html.en +++ b/docs/manual/mod/mod_proxy.html.en @@ -426,6 +426,11 @@ ProxyPass "/examples" "http://backend.example.com/examples" timeout=10</pre> </Location></pre> + <p> The "no-proxy" environment variable can be set to disable + <code class="module"><a href="../mod/mod_proxy.html">mod_proxy</a></code> processing the current request. + This variable should be set with <code class="directive"><a href="../mod/mod_setenvif.html#setenvif">SetEnvIf</a></code>, as <code class="directive"><a href="../mod/mod_env.html#setenv">SetEnv</a></code> + is not evaluated early enough.</p> + </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> <h2><a name="request-bodies" id="request-bodies">Request Bodies</a></h2> @@ -1107,7 +1112,13 @@ ProxyPass "/mirror/foo" "http://backend.example.com"</pre> specific location will take precedence.</p> <p>For the same reasons, exclusions must come <em>before</em> the - general <code class="directive">ProxyPass</code> directives.</p> + general <code class="directive">ProxyPass</code> directives. The "no-proxy" + environment variable is an alternative to exclusions, and is the only + way to configure an exclusion of a <code class="directive">ProxyPass</code> + directive in <code class="directive"><a href="../mod/core.html#location">Location</a></code> context. + This variable should be set with <code class="directive"><a href="../mod/mod_setenvif.html#setenvif">SetEnvIf</a></code>, as <code class="directive"><a href="../mod/mod_env.html#setenv">SetEnv</a></code> + is not evaluated early enough. + </p> </div> |