Obtain the appropriate certificate for your organization. This must be placed within your installation, and referenced from the server_web.xml. Below is an example of the SSL section in the server_web.xml file: Change the value of the "keystore" parameter to match the location of the certificate. <Connector className="org.apache.tomcat.service.PoolTcpConnector"><Parameter name="handler" value="org.apache.tomcat.service.http.HttpConnectionHandler"/> <Parameter name="port" value="8443"/> <Parameter name="socketFactory" value="org.apache.tomcat.net.SSLSocketFactory" /> <Parameter name="keystore" <Parameter name="keypass" value="password"/> </Connector> |