Hi Team, I have a tomcat 8.5 server configured in the production environment. As per requirement, we need to disable all 80 port listening from the application and only https (443) to be allowed.
I have implemented SSL and the same is working fine. however, still, tomcat is showing listening on 80. so can we disable (comment ) port 80 connector from server.xml which will only allow access to the portal with Https. >From : <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" /> To : <!-- <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="443" /> --> -- Regards Nitin Kadam