You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

After importing all the certificates into your SHRINE keystore, you will need to configure two places to utilize the new keystore:

 

In the keystore section within shrine.keystore:

keystore {
    file = "/opt/shrine/shrine.keystore"
    password = "password"
    privateKeyAlias = "$KEYSTORE_ALIAS"
    keyStoreType = "JKS"
    caCertAliases= ["HUB_CA_CERT_ALIAS"]
  }

 

and in the keystore section within /opt/shrine/tomcat/conf/server.xml:

<Connector port="6443" protocol="org.apache.coyote.http11.Http11NioProtocol"
               maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS"
               keystoreFile="/opt/shrine/shrine.keystore"
               keystorePass="password"
               keyAlias="KEYSTORE_ALIAS" />

After making changes to these two files, please restart Tomcat services.

  • No labels