setup new SSL Certificate to RTC 4.0
![]() Hello, I would like to change the certified to RTC, I'm using tomcat (by default) but I can't find where is located or it requires perform others task for do it?
|
Accepted answer
![]()
You need to store the certificate in the Tomcat keystore, and then reference it in the server.xml file.
Here is some information from the Tomcat documentation: http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html Rafael Rodriguez Montes selected this answer as the correct answer
|
Comments
For tomcat the SSL certificate is pointed to by in the tomcat/conf/server.xml file. The current certificate may also be in that same location.
In the <Connector . /> that's ssl enabled you'll find something like:
keyAlias="rtp-rtc9" key
storeFile="rtp-rtc9.jks" keystorePass="passwerd"
put your new key file into the tomcat directory and adjust the values for keyAlias, storeFile, keystorePass and restart.