Say I have a registered URL mywebsite.com
pointing to my server with a public IP address.
I want to run both tomcat and apache to serve pages (i.e., some static pages on apache and some dynamic pages on tomcat, like jsp etc...).
For the sake of simplicity, let's assume that apache is listening on 80 and tomcat on 8080.
I heard about mod_proxy
. Is it possible to have requests to mywebsite.com
go to apache and mywebsite/loggedin
go to tomcat? If yes, how should this be configured and where? Thanks.