summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2021-12-13 16:07:45 +0100
committerYann Ylavic <ylavic@apache.org>2021-12-13 16:07:45 +0100
commit00818b79791fd7dbbbc49f6ddbb73b07a7e85597 (patch)
tree853b89a77f1892568b3e3ca34db8dc783692661f /docs
parentAdd Travis build job building/testing mod_ssl against OpenSSL 3. (diff)
downloadapache2-00818b79791fd7dbbbc49f6ddbb73b07a7e85597.tar.xz
apache2-00818b79791fd7dbbbc49f6ddbb73b07a7e85597.zip
Improve docs for ProxyPass mapping= parameter. [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1895895 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/mod/mod_proxy.xml17
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml
index 8b77ad8310..2d720cc012 100644
--- a/docs/manual/mod/mod_proxy.xml
+++ b/docs/manual/mod/mod_proxy.xml
@@ -1285,9 +1285,20 @@ ProxyPass "/example" "http://backend.example.com" max=20 ttl=120 retry=300
</td></tr>
<tr><td>mapping</td>
<td>-</td>
- <td><p>Mapping to process the <var>url</var> before choosing a Worker/Balancer.
- 'servlet' maps like a servlet container (like jk_servlet_normalize), use with Apache Tomcat for example.
- 'encoded' maps it encoded.</p>
+ <td><p>Type of mapping between the <var>path</var> and the <var>url</var>.
+ This determines the normalization and/or (non-)decoding that <module>mod_proxy</module> will
+ apply to the request's <var>uri-path</var> to match the <var>path</var>. If/when the mapping
+ matches, the request <var>uri-path</var> is committed such that <code>&lt;Location</code>
+ and other directory contexts using a path will match according to the same mapping.</p>
+ <p>The <code>encoded</code> mapping avoids the %-decoding of the <var>uri-path</var> such that
+ one can match for instance <code>/some%2furi%2fpath%2fwith%2fslash</code> in a <code>ProxyPass</code>
+ or <code>&lt;Location</code> context.</p>
+ <p>The <code>servlet</code> mapping refers to the one defined by the Servlet specification, which
+ is for instance applied by Apache Tomcat for servlet containers (notably the path parameters are
+ ignored for the mapping). An <var>uri-path</var> like <code>/some;foo/path</code> is then mapped
+ as <code>/some/path</code> and thus matches <code>&lt;Location /some/path&gt;</code> or
+ <code>ProxyPass "/some/path" "https://tomcat.example.com"</code> regardless of the requested
+ path parameters.</p>
</td></tr>
</table>