Reputation: 1410
I deployed my application in openshift in tomcat container and I noticed that my app is hosted on http:///app-name/ and I want to use http:///
How can I do that in openshift application ?
Any help is greatly appreciated.
Upvotes: 0
Views: 287
Reputation:
You need to rename your war file to ROOT.war, then it will be available at http://app-domain.rhcloud.com/, otherwise it will be deployed at http://app-domain.rhcloud.com/<name of war file>
Upvotes: 1