Apache & VeriSign certificate: Not trusted

Linux howto's, compile information, information on whatever we learned on working with linux, MACOs and - of course - Products of the big evil....
Post Reply
User avatar
^rooker
Site Admin
Posts: 1483
Joined: Fri Aug 29, 2003 8:39 pm

Apache & VeriSign certificate: Not trusted

Post by ^rooker »

When using a VeriSign certificate with Apache, you might still encounter problems that the client doesn't trust your certificate.

Usually, you have only 2 lines for SSL:

Code: Select all

SSLCertificateFile /usr/local/ssl/crt/public.crt  
SSLCertificateKeyFile /usr/local/ssl/private/private.key  
but in this case you also need an intermediate certificate:

Code: Select all

SSLCACertificateFile /usr/local/ssl/crt/intermediate.crt
Here's a "howto install verisign certificate in apache" by verisign themselves.
Post Reply