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, c:\Program Files\APG\Web-Servers\tomcat\Default\conf.

Procedure

  1. Uncomment the https connector configuration in server.xml.
    This step is required only upto 6.7u1 installation. 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="C:\Program Files\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" />