How to remove app name and port from url in grails

2020-02-09 07:13发布

问题:

Instead of deploying my app to

http://localhost:8080/myApp

I want to deploy it to

http://localhost

回答1:

To change the run-app port, edit grails-app/conf/BuildConfig.groovy and add the line

grails.server.port.http = 80

To remove the context (the 'myApp' part) edit application.properties and add the line

app.context=/


回答2:

deploy your app to a tomcat server with the war name as ROOT.war. Because war names describe contexts... papa.war will be available through [root_domain]/papa



回答3:

To remove the port, use:

grails -Dserver.port=80 run-app