Reputation: 671
I would like to run several Grails applications, powered by Jetty (but I could change the server to Tomcat if needed, however I need the Continuations API for CometD features) on the same server. They all need to be on port 80, but have different domain names (myfirstsite.com, mysecondsite.com)
Is there a way to run several apps this way ?
Upvotes: 0
Views: 490
Reputation: 2193
It shouldn't be complicated to run different webapps on different virtual hosts on Jetty.
Upvotes: 0
Reputation: 75681
The easiest way is probably to use Apache HTTPD virtual hosts, using mod_proxy to connect to Jetty or Tomcat.
Upvotes: 3