Skip to end of metadata
Go to start of metadata

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

Compare with Current View Version History

Version 1 Next »

In the server.xml file, connector tags enable SSL against the respective certificate key. You need to configure the connector port from server.xml against the respective certificate. Below is a sample code that needs to be un-commented from server.xml to configure HTTPS port:

<!–
<Connector port=”8443″ protocol=”org.apache.coyote.http11.Http11NioProtocol”
maxThreads=”150″ SSLEnabled=”true”>
<SSLHostConfig>
<Certificate certificateKeystoreFile=”conf/.keystore”
type=”RSA” />
</SSLHostConfig>
</Connector>
–>

Restart Web Server after making change to server.xml file.

  • No labels