Commit 0ac11f8a authored by Jean-Frederic Clere's avatar Jean-Frederic Clere
Browse files

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
parent a4ec047e
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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
+9 −0
Original line number Diff line number Diff line
@@ -281,6 +281,15 @@ ProxyPass "/examples" "http://backend.example.com/examples" timeout=10

      </note> <!-- /worker_sharing -->

      <note type="warning"><title>Host part in the URL</title>
        <p>The host part needs to start with a letter [a-z]. For example:</p>
        <highlight language="config">
ProxyPass "/apps"     "http://127"
        </highlight>
        <p>is not valid and will cause an error while processing a request that
        maps the path.</p>
      </note>

      <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