From: Eric Covener Date: Mon, 20 Jan 2014 00:31:19 +0000 (+0000) Subject: Merge r1517406 from trunk: X-Git-Tag: 2.4.8~236 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45a5f7da14baa6a33615ca73cf3006bb1003bdfd;p=apache Merge r1517406 from trunk: PR55352: mention in the manual that the matching is a prefix only, not the same context-root / segment-aware matching done by . git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1559612 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml index f043cb328c..dd939941b9 100644 --- a/docs/manual/mod/mod_proxy.xml +++ b/docs/manual/mod/mod_proxy.xml @@ -466,6 +466,20 @@ ProxyPass /examples http://backend.example.com/examples timeout=10 </Proxy> + Differences from the Location configuration section +

A backend URL matches the configuration section if it begins with the + the wildcard-url string, even if the last path segment in the + directive only matches a prefix of the backend URL. For example, + <Proxy http://example.com/foo> matches all of + http://example.com/foo, http://example.com/foo/bar, and + http://example.com/foobar. The matching of the final URL differs + from the behavior of the Location section, which for purposes of this note + treats the final path component as if it ended in a slash.

+

For more control over the matching, see ProxyMatch.

+
+ ProxyMatch