User not redirected from 8080 to 8443
We imported SSL certificates in Tomcat to migrate from http to https.
The old http URL with port 8080 is expected to redirect to https URL with port 8443.
The redirection worked for a couple of days and suddenly stopped working.
The user is now redirected to https URL with old port number 8080.
The redirection is happening from http to https, but without changing the port.
Any inputs on how to fix will help.
Pega v8.6.6
Tomcat v9
We have configured the server.xml as below
<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" scheme="https" secure="true" SSLEnabled="true" clientAuth="false" keyAlias="***" keystoreFile=***" keystorePass="***" sslProtocol="TLS">
</Connector>