just add the same proxy statements to your SSL virtual host

Filip

scurenton wrote:
First off, I am sure this is probably posted somewhere but not sure what to
search on.

I am new to the Tomcat world so bare with me.  I have a reverse proxy setup
in our DMZ running Tomcat 5 and Apache 2 and an Application internal that is
running on Tomcat 5. I have a SSL cert from Go Daddy for services.xxx.xxx OK, I want an INET user to type in https://services.xxx.xxx/Ef3/.... and
have it be directed to our internal application which is on a server called
http://bcccrmecm:8080/Ef3/....
I do have it to where a user can type in http:/services.xxx.xxx/Ef3/.... and
it hits the reverse proxy and the RP redirects it internally fine.  I did
this by using some directionds that had me uncomment the mod_proxy lines and
add:

# mod_proxy setup. ProxyRequests Off
ProxyPass /Ef3 http://bcccrmecm:8080/Ef3
ProxyPassReverse /Ef3 http://bcccrmecm:8080/Ef3
ProxyPass /selfservice http://bcccrmecm:8080/selfservice
ProxyPassReverse /selfservice http://bcccrmecm:8080/selfservice
<Location "/Ef3">
    Order allow,deny
  Allow from all
</Location>
<Location "/selfservice">
  Order allow,deny
  Allow from all
</Location>

How do I setup the reverse proxy to redirect any traffic from
https://services.xxx.xxx/Ef3/.... to internal http://bcccrmecm/Ef3/....
?????


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to