After you get the SSL certificate, you must configure your server to use the certificate.
Please follow the following steps:
The signed certificate usually comes with an intermediate certificate file, this certificate is signed by the root certificate in a web browser, so your certificate will be trusted by a web browser because of the trusted relationship among those certificates. You have two ways to install.
One is to set “CA Certificate File” or “CA Certificate Path”.
“CA certificate file” is the path to the file, “CA Certificate Path” is the the path to the directory holding the intermediate certificate.
Another way is to create a chained certificate, set “Certificate File” to the path of “chained.cert”, “Chained Certificate” should be set to “Yes”.
To create the chained certificate, you just concat your certificate file together with the intermediate certificate with a command like:
cat my.cert ca.cert > chained.cert
You also should specify SSL Version and Encryption Level on the same page, SSLv2 is not recommended. After that, you should add virtual host to listener mapping for the web site that you wish to be secured by the SSL certificate, then restart the server, you should be all set.