Reputation: 185
I want to know if it is possible to run a Grails app (basically a Java WAR file) on Apache web server. Currently I am using Tomcat but I need some Apache specific configurations.
Thanks in advance.
Upvotes: 0
Views: 202
Reputation: 24776
You can not run a Grails application (WAR) on an Apache HTTP webserver. A Java WAR requires a JEE application container such as Tomcat or Jetty to run.
Depending on your needs you could put an Apache HTTP webserver in front of a Tomcat server which runs your Grails application. This way you can use the features of the Apache HTTP webserver as well as what is offered by Tomcat. However, this is beyond the scope of the question you asked.
Upvotes: 1