Edit the server.xml file to tell Tomcat server which secure port to use.

Update the https connector configuration in server.xml in this path, /opt/APG/Web-Servers/Tomcat/Default/conf.

Procedure

  1. Uncomment the https connector configuration in server.xml.
    This step is not required if you have not changed M&R mode to HTTP from HTTPS. For new installation, https connector configuration in server.xml is enabled by default.
  2. Add the path to the keystore file. For example,
     <Connector port="58443" protocol="org.apache.coyote.http11.Http11NioProtocol"
                   maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
                   compression="2048"
                   clientAuth="false" sslProtocol="TLSv1.2" URIEncoding="UTF-8"
                   sslEnabledProtocols="TLSv1.2" keystoreFile="/opt/APG/.keystore"
    keystorePass="changeit"
                   ciphers="TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_256_GCM_SHA384, 
    TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256" />