You must modify the server.xml file for the Tomcat that is hosting the EAC.
Before you can use SSL with the EAC, you must edit its server.xml file as described below. Before beginning, make sure that you have generated keystore and truststore certificates for the EAC.
To enable the HTTPS connector in Tomcat:
<!-- Define a SSL HTTP/1.1 Connector on port 8443 --> <Connector port="8443" maxHttpHeaderSize="8192" SSLEnabled="true" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" disableUploadTimeout="true" acceptCount="100" scheme="https" secure="true" clientAuth="true" sslProtocol="TLS" keystoreFile="conf/eac.ks" keystorePass="eacpass" truststoreFile="conf/ca.ks" truststorePass="eacpass" URIEncoding="UTF-8"/>
The tag specifies an explicit location for the Java keystore and a passphrase to allow it to use the Application Controller keystore in the Tomcat conf directory. If you remove these attributes, Tomcat uses the default keystore in the user’s home directory and assumes a passphrase of "changeit".