Installing GoDaddy's intermediate certifcate

I think I got it though I'm not sure how to verify that the intermediate cert. was properly installed.

I downloaded https://certs.godaddy.com/repository/gd_bundle.crt and copied it to /usr/local/etc/apache22/ssl.crt, then added the following lines to httpd-ssl.conf:

SSLCACertificatePath "/usr/local/etc/apache22/ssl.crt"
SSLCACertificateFile "/usr/local/etc/apache22/ssl.crt/gd_bundle.crt"

...and restarted Apache. Am I all set?

Thanks! :)

J.
 
Try online test below:
Code:
https://ssl.trustwave.com/support/support-help-now.php
Or use command line tool:
Code:
openssl s_client -host secure.example.com -key example.com.pem -cert example.com.pem -port 443
You need those files. Alternatively, you can use gd intermediate and your domain certificate to do the same.
 
Back
Top