On Wed, Oct 30, 2013 at 9:24 PM, Chris Arnold
<carn...@electrichendrix.com>wrote:

> Apache/2.2.12 (Linux/SUSE). We have a web app that runs under tomcat
> (8080). We have apache using mod_proxy (80 and 443). According to the
> tomcat mailing list:
>


> What we need is for apache to proxy, rewrite or whatever the 443 requests
> to tomcat app on port 8443. I have tried everything from proxypass
> (reverse), rewrite to mounting in tomcat (which doesnt need to be done).
> How does one accomplish this with apache?
>

You should be able to use something like this:
<VirtualHost *:443>
...
SSLProxyEngine On
ProxyPass /path/ https://backend:8443/
...
</VirtualHost>

- Y

Reply via email to