On Thu, Oct 31, 2013 at 11:08 AM, Chris Arnold
<carn...@electrichendrix.com>wrote:

> >Did you have a trailing slash in the ProxyPass?
> >I would expect that it would have tried to get /share*/*share/.
>
> Yes, i had a trailing slash and it did in fact tried to get /share/share.
> When i remove the trailing slash it gives me /shareshare
>

The trailing slash is important.

> ProxyPass / https://192.168.123.3:8443/share

This is telling Apache to strip off the slash when it does the proxy. This
is probably not what you want to do.

What URL are you using to access this vhost?
If you want to access https://example.com/share/ and have that hit the
proxy, you would need to make the proxy config

> ProxyPass /share/ https://192.168.123.3:8443/share/


That would explain the duplication.

- Y

Reply via email to