Our main web server is using IIS 6 and it obviously catches all port 80 traffic and we have another app served on a non-standard port (8443) that is hosted using Apache.
For example:
- http://www.mydomain.com -> IIS6
- http://subdomain.mydomain.com:8443 -> Apache App
- http://subdomain.mydomain.com -> IIS6
I would like to be able to access the Apache app without using port 8443. That is, IIS should rewrite/proxy content from the Apache app on the different port. Note: I do not want to redirect the user.
- http://subdomain.mydomain.com -> IIS <-> http://subdomain.mydomain.com:8443 -> Apache App
Is this possible? What tools should I use?