Hi all,
 
I’m trying to implement SSL and have defined a connector on ports 8080 and 
8443. I can connect to either port, but I want any incoming HTTP on 8080 to be 
redirected to the HTTPS port on 8443, but that’s not happening as I have things 
configured below. What
am I missing?
 
<Connector port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol"
    connectionTimeout="60000"
    redirectPort="8443"
    relaxedQueryChars='^{}[]|&quot;' />
 
 
<Connector
    protocol="org.apache.coyote.http11.Http11NioProtocol"
    connectionTimeout="60000"
    port="8443"
    maxThreads="200"
    scheme="https"
    secure="true"
    SSLEnabled="true"
    
keystoreFile="///C:/apache-tomcat-8.5.57/webapps/cmms/WEB-INF/classes/keystore.jks"
    keystorePass="********"
    clientAuth="false"
    sslProtocol="TLSv1.2"
    relaxedQueryChars='^{}[]|&quot;' />
 
Thanks & regards,Lee Jarvis

Reply via email to