From: Ralf S. Engelschall Date: Thu, 10 Sep 1998 07:30:51 +0000 (+0000) Subject: Fix documentation of ProxyPass/ProxyPassReverse according to the X-Git-Tag: 1.3.2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db98ceb158467f748eedeed0042cabd94fedb4f2;p=thirdparty%2Fapache%2Fhttpd.git Fix documentation of ProxyPass/ProxyPassReverse according to the trailing slash problem. Submitted by: Jon Drukman Reviewed by: Ralf S. Engelschall PR: 2933 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82023 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.html b/docs/manual/mod/mod_proxy.html index 3c5d991e16c..3711c09e381 100644 --- a/docs/manual/mod/mod_proxy.html +++ b/docs/manual/mod/mod_proxy.html @@ -196,7 +196,7 @@ a local virtual path; <url> is a partial URL for the remote server.

Suppose the local server has address http://wibble.org/; then

-   ProxyPass /mirror/foo http://foo.com
+   ProxyPass /mirror/foo/ http://foo.com/
 
will cause a local request for the <http://wibble.org/mirror/foo/bar> to be @@ -248,8 +248,8 @@ used for the ProxyPass directive. Example:
Suppose the local server has address http://wibble.org/; then
-   ProxyPass         /mirror/foo http://foo.com
-   ProxyPassReverse  /mirror/foo http://foo.com
+   ProxyPass         /mirror/foo/ http://foo.com/
+   ProxyPassReverse  /mirror/foo/ http://foo.com/
 
will not only cause a local request for the <http://wibble.org/mirror/foo/bar> to be internally