Forwarding apache requests (port 80) to Tomcat (port 8080)
I have a Tomcat server with war applications
How can I modify apache configuration do that I can open my webapp by just:
http://xx.xx.xxx.xxx/MyApp/
instead of:
http://xx.xx.xxx.xxx:8080/MyApp/
I have already configured the Tomcat server.xml Host to map MyApp to my domain MyApp.com
But how can I just use MyApp.com to open my site if the Tomcat running on port 8080?
Thank you
How can I modify apache configuration do that I can open my webapp by just:
http://xx.xx.xxx.xxx/MyApp/
instead of:
http://xx.xx.xxx.xxx:8080/MyApp/
I have already configured the Tomcat server.xml Host to map MyApp to my domain MyApp.com
But how can I just use MyApp.com to open my site if the Tomcat running on port 8080?
Thank you