Is HTTPD giving that error or Tomcat? What does the log say is the reason?
- Y On Thu, Oct 31, 2013 at 12:15 PM, Chris Arnold <carn...@electrichendrix.com>wrote: > >>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/ >>> >> >> https://share.example.com which will end up being >> https://share.example.com/share >> > >>Exactly! Your config should be > >>ProxyPass /share/ <https://192.168.123.3:8443/share/> > https://192.168.123.3:8443/share/ > > ProxyPass /share/ https://192.168.123.3:8443/share/ > <https://192.168.123.3:8443/share/%20>and > ProxyPass /share https://192.168.123.3:8443/share > > give an access forbidden 403 error. > > >>This means that the path /share/ will be redirected to the same path on > the inner server. > >>The parallel > >>ProxyPass / https://192.168.123.3:8443/ > >>would give you the same effect, but also try to proxy any other paths > that are used on that vhost which is probably not what you want to >>do. > >