Hi all,
I have searched the complete forum whether someone is having the same problem. Installing a certificate shouldn't be that hard, and it isn't if you ask me following the instructions on: http://www.site-helper.com/ssl.html
I have generated a 2048-bits request. Pasted the certificate I got from Godaddy under the key and saved the whole thing.
Then pasted the bundle (chain/intermediate) certificate into the root certificate box, checked "Use a CA Cert." and saved once more.
Success message received, so you think everything is OK now.
Unfortunately it isn't. There are no problems with the major browsers (IE, FF, Chrome), however I do get a warning on Safari (Mac) that the certificate is not trusted.
I used three different SSL tools, to check whether something is wrong:
http://certlogik.com/sslchecker/
http://www.networking4all.com/en/support/tools/site+check/
http://www.sslshopper.com/ssl-checker.html
The certificate is OK, the only problem is that the Chain certificate is not recognized, as it fails to verify the certificate to a trusted root.
So I checked the custom httpd configuration; and guess what... it is there.
I verified whether the SSLCACertificateFile actually exists on the server, and it is exactly in the location as mention in the custom httpd.
Can someone please tell me what might be wrong or at least point me in the right direction as I am losing my mind here?
Thanks in advance,
Richard
I have searched the complete forum whether someone is having the same problem. Installing a certificate shouldn't be that hard, and it isn't if you ask me following the instructions on: http://www.site-helper.com/ssl.html
I have generated a 2048-bits request. Pasted the certificate I got from Godaddy under the key and saved the whole thing.
Then pasted the bundle (chain/intermediate) certificate into the root certificate box, checked "Use a CA Cert." and saved once more.
Success message received, so you think everything is OK now.
Unfortunately it isn't. There are no problems with the major browsers (IE, FF, Chrome), however I do get a warning on Safari (Mac) that the certificate is not trusted.
I used three different SSL tools, to check whether something is wrong:
http://certlogik.com/sslchecker/
http://www.networking4all.com/en/support/tools/site+check/
http://www.sslshopper.com/ssl-checker.html
The certificate is OK, the only problem is that the Chain certificate is not recognized, as it fails to verify the certificate to a trusted root.
So I checked the custom httpd configuration; and guess what... it is there.
Code:
<VirtualHost ip-address:443 >
SSLEngine on
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
SSLCACertificateFile /usr/local/directadmin/../domain.com.cacert
...
</VirtualHost>
I verified whether the SSLCACertificateFile actually exists on the server, and it is exactly in the location as mention in the custom httpd.
Can someone please tell me what might be wrong or at least point me in the right direction as I am losing my mind here?
Thanks in advance,
Richard