diff options
author | Jean-Frederic Clere <jfclere@apache.org> | 2017-10-02 11:18:50 +0200 |
---|---|---|
committer | Jean-Frederic Clere <jfclere@apache.org> | 2017-10-02 11:18:50 +0200 |
commit | 8d67a47d6c8b32f6c3087dafad802e3fc57d55e1 (patch) | |
tree | 7a7f3dfe7da07fed141b6cb470c38db7c398169f /docs/manual/mod/mod_proxy.html.en | |
parent | Fix ascii art :) (diff) | |
download | apache2-8d67a47d6c8b32f6c3087dafad802e3fc57d55e1.tar.xz apache2-8d67a47d6c8b32f6c3087dafad802e3fc57d55e1.zip |
Add a warning for host starting with a letter.
Fix for PR 61540.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1810316 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 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en index f7f790ba27..2177d6a3f7 100644 --- a/docs/manual/mod/mod_proxy.html.en +++ b/docs/manual/mod/mod_proxy.html.en @@ -319,6 +319,14 @@ ProxyPass "/examples" "http://backend.example.com/examples" timeout=10</pre> </div> + <div class="warning"><h3>Host part in the URL</h3> + <p>The host part needs to start with a letter [a-z]. For example:</p> + <pre class="prettyprint lang-config">ProxyPass "/apps" "http://127"</pre> + + <p>is not valid and will cause an error while processing a request that + maps the path.</p> + </div> + <p>Explicitly configured workers come in two flavors: <dfn>direct workers</dfn> and <dfn>(load) balancer workers</dfn>. They support many important configuration attributes which are |