I placed the my java web application in tomcat7 webapps folder in linux server.
My application is running with port number 8080, my app url is http://xxxx:8080/xxxx/#/
How can I map the application to domain name http://xxxx.in
?
I placed the my java web application in tomcat7 webapps folder in linux server.
My application is running with port number 8080, my app url is http://xxxx:8080/xxxx/#/
How can I map the application to domain name http://xxxx.in
?
The answers below should be all you need:
How to change the port of Tomcat from 8080 to 80?
Deploying my application at the root in Tomcat
Before you do any of the above you should stop Apache HTTPD (not Apache Tomcat) as it is already running on port 80 (and you don't really need it).
Check inside your /etc/rc.d/init.d/ directory for services available and use command stop (servicename) to stop it