diff options
author | Ken Coar <coar@apache.org> | 2015-04-15 20:51:11 +0200 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2015-04-15 20:51:11 +0200 |
commit | 837aaea30f4ef8f1cf3ad1d3460acfa421d4ab7c (patch) | |
tree | d345853a4bcc26b3a0d68bf61fba6e100a0bd4b7 /docs/manual/urlmapping.html.en | |
parent | Quote ScriptAlias and DocumentRoot arguments. (diff) | |
download | apache2-837aaea30f4ef8f1cf3ad1d3460acfa421d4ab7c.tar.xz apache2-837aaea30f4ef8f1cf3ad1d3460acfa421d4ab7c.zip |
Quote path/URL arguments to Proxy* directives.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673930 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/urlmapping.html.en')
-rw-r--r-- | docs/manual/urlmapping.html.en | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/urlmapping.html.en b/docs/manual/urlmapping.html.en index 960be6038a..8322cfdfa3 100644 --- a/docs/manual/urlmapping.html.en +++ b/docs/manual/urlmapping.html.en @@ -233,10 +233,10 @@ the <code>/bar/</code> directory on <code>internal.example.com</code> and returns them to the client as if they were from the local server.</p> -<pre class="prettyprint lang-config">ProxyPass /foo/ http://internal.example.com/bar/<br /> -ProxyPassReverse /foo/ http://internal.example.com/bar/<br /> +<pre class="prettyprint lang-config">ProxyPass "/foo/" "http://internal.example.com/bar/"<br /> +ProxyPassReverse "/foo/" "http://internal.example.com/bar/"<br /> ProxyPassReverseCookieDomain internal.example.com public.example.com<br /> -ProxyPassReverseCookiePath /foo/ /bar/</pre> +ProxyPassReverseCookiePath "/foo/" "/bar/"</pre> <p>The <code class="directive"><a href="./mod/mod_proxy.html#proxypass">ProxyPass</a></code> configures |