You are not logged in.
Pages: 1
You will need to edit the conf/server.xml file in the tomcat directory.
Look for the section as seen below:
<!--<Connector port="8443"
protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" /> -->
Uncomment that section (or copy it) and change the port to the port you wish Tomcat to listen for https traffic on. Normally this is 443
You will need to apply a keystore. In the following example the jks file is found in the conf directory and is called sxi_cert.jks. The password is "password"
<Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="conf/sxi_cert.jks" keystorePass="password" />
Restart Tomcat and you should be able to connect to your server using https://servername/
Offline
Pages: 1