Forwarding apache requests (port 80) to Tomcat (port 8080)?
- by iftrue
I want to run a Tomcat application through a regular website URL, such as www.xyz.com. I would like the root of this domain to act as the base directory for the web application, so each request to www.xyz.com/a/b/c becomes www.abc.com:8080/myApp/a/b/c. Ideally, I would be able to do this transparently and only for certain webapps.
www.abc.com:8080 should still respond to requests.
What do I need to do to make this happen?