I have a wildcard SSL certificate from GoDaddy that has three files:

wildcard.crt gd_bundle.crt wildcard.key

In setting up mod_gnutls to be used with Apache, I can get the site to come up, but it throws a warning that the SSL certificate has not been validated by a CA.

When I use mod_ssl, I can stipulate a SSLCertificateChainFile directive and point it at the bd_bundle.crt file. I do not see how to do this with mod_gnutls.

Any help is appreciated. I also know that mod_ssl supports SNI, so if there is not an easy answer, I will just try that.

Thanks,

QWade

link|improve this question

62% accept rate
feedback

2 Answers

You can concatenate the chain certificate file at the end of your regular certificate file, it works under most implementations.

link|improve this answer
feedback

I often prefer to update ca-bundle.crt, which is referenced system wide by anything compiled against OpenSSL.

In CentOS, this is stored in /usr/share/ssl/certs. This can differ between distributions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.