I have my web application deployed in tomcat. Right now its accessed using the IP in the URL.
http://IPaddress:8080/appname/index.html
I wanted to configure a domain name in the DNS server which maps to this IP name. My windows admin created a domain. But problem is I'm not able to use it directly. Its expecting the port number.
http://domain.com:8080/appname/index.html
My expectation :
http://domain.com --> http://IP:8080/appname/index.html
How do I configure so that my tomcat recognizes the domain name with out the port number.