I have an internal web app hosted by Tomcat 7 running on Windows Server 2008 R2. Users access the site from this URL: http://servername:8080/ssc. I'd rather users access the site from here instead: http://fortify
By default, Tomcat uses port 8080:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
My initial thought was to update that to use port 80 or would it be better to add a connector?
Or would it be better still to have a second service as mentioned here?