Quick Links

You will receive an email from OptimumSSL with the certificate in the email (yourdomainname.crt). When viewed in a text editor, your certificate will look something like:
-----BEGIN CERTIFICATE-----
MIAGCSqGSIb3DQEHAqCAMIACAQExADALBgkqhkiG9w0BBwGggDCCAAhAF
UbM77e50M63v1Z2A/5O5MA0GCSqGSIb3DQEOBAUAMF8xCzAJBgNlVTMSAw
(.......)
E+cFEpf0WForA+eRP6XraWw8rTN8102zGrcJgg4P6XVS4l39+l5aCEGGbauLP5W6
K99c42ku3QrlX2+KeDi+xBG2cEIsdSiXeQS/16S36ITclu4AADEAAAAAAAAA
-----END CERTIFICATE-----
Copy your Certificate into the directory that you will be using to hold your certificates. In this example we will use /etc/ssl/crt/. Both the public and private key files will already be in this directory. The private key used in the example will be labeled private.key and the public key will be yourdomainname.crt.
It is recommended that you make the directory that contains the private key file only readable by root.
You will need to install the chain certificate (intermediates) in order for browsers to trust your certificate. As well as your SSL certificate (yourdomainname.crt) three other certificates, named AddTrustExternalCARoot.crt, UTNAddTrustServerCA.crt and OptimumSSLCA.crt, are also attached to the email from OptimumSSL. Apache users will only require the intermediates UTNAddTrustServerCA.crt and OptimumSSLCA.crt certificates.
Firstly, create a 'bundle' file. To do this you will need to open the certificates with a text editor and add both of the certificate texts to that file, first the OptimumSSLCA.crt then the UTNAddTrustServerCA.crt and save this file as ca.txt
In the Virtual Host settings for your site, in the httpd.conf file, you will need to complete the following:
SSLCACertificateFile /etc/httpd/conf/ca.txt
If you are using a different location and certificate file names you will need to change the path and filename to reflect your server.
The SSL section of the updated httpd config file should now read similar to this example (depending on your naming and directories used):
SSLCertificateFile /etc/ssl/crt/yourdomainname.crt
SSLCertificateKeyFile /etc/ssl/crt/private.key
SSLCACertificateFile /etc/httpd/conf/ca.txt
Save your httpd.conf file and restart Apache.