Hi there,
In relation to the blog’s article Using SSL With Pulse describing the changes to perform to change the port to 443, I’ve got a silly question:
In the file server.xml there are 2 Connector blocs.
- The first one has port=“8099” and redirectPort=“8093”
- The second has port=“8093” + all parameters to configure the SSL usage (minus the parameter “keystoreType” though)
1st:
<Connector connectionTimeout="20000" port="8099" protocol="HTTP/1.1" redirectPort="8093" URIEncoding="UTF-8" compressableMimeType="text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json" compression="on" compressionMinSize="2048" />
2nd:
<Connector port="8093" protocol="HTTP/1.1" SSLEnabled="true" URIEncoding="UTF-8" scheme="https" secure="true" sslProtocol="TLS" keystoreFile="conf/TOMCAT.keystore" keystorePass="Pulse12345" clientAuth="false" compressableMimeType="text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json" compression="on" compressionMinSize="2048" />
My guess is I should change the second bloc, redefining the port number to 443, and set-up everything else, but isn’t there anything to do in the first bloc as well ?
Pulse version: 5.7.10
Cheers