From: Jean-Frederic Clere Date: Mon, 2 Oct 2017 09:18:50 +0000 (+0000) Subject: Add a warning for host starting with a letter. X-Git-Tag: 2.5.0-alpha~81 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d67a47d6c8b32f6c3087dafad802e3fc57d55e1;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en index f7f790ba27d..2177d6a3f77 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 +

Host part in the URL

+

The host part needs to start with a letter [a-z]. For example:

+
ProxyPass "/apps"     "http://127"
+ +

is not valid and will cause an error while processing a request that + maps the path.

+
+

Explicitly configured workers come in two flavors: direct workers and (load) balancer workers. They support many important configuration attributes which are diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml index 7e440e31a5e..9790165cb53 100644 --- a/docs/manual/mod/mod_proxy.xml +++ b/docs/manual/mod/mod_proxy.xml @@ -281,6 +281,15 @@ ProxyPass "/examples" "http://backend.example.com/examples" timeout=10 + Host part in the URL +

The host part needs to start with a letter [a-z]. For example:

+ +ProxyPass "/apps" "http://127" + +

is not valid and will cause an error while processing a request that + maps the path.

+ +

Explicitly configured workers come in two flavors: direct workers and (load) balancer workers. They support many important configuration attributes which are