Installing Certificates in the Keystore
To configure SSL for ColdFusion using the keytool utility, do the following:
Create a certificate file
Run the following command:
cfroot\jre\bin\keytool -genkey -alias tomcat -keyalg RSA
Type the details as per the instructions.
Running this command creates a certificate.keystore in the following location:
C:\Documents and Settings\user's_directory
usr/home
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" keystoreFile="<certificate_location>\.keystore" keystorePass="<password>" keyAlias="tomcat" clientAuth="false" sslProtocol="TLS" /> |
For more information about SSL configuration, see http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html.