Forwarding apache requests (port 80) to Tomcat (port 8080)?
Posted
by iftrue
on Server Fault
See other posts from Server Fault
or by iftrue
Published on 2010-05-14T14:24:17Z
Indexed on
2010/05/14
14:34 UTC
Read the original article
Hit count: 372
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?
© Server Fault or respective owner