ChainedSSL Installation Problem..

SSL Success!!!

Mark, from DA fixed it! :D

Here is how he did it.

All I added was:
SSLCACertificateFile /etc/httpd/conf/ssl.crt/caroot.crt

to the https section in the /etc/httpd/conf/httpd.conf file (bottom) and pasted the CA certificate into that file.

Ok so now my main httpd conf file looks like this.
SSLEngine on
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
SSLCACertificateFile /etc/httpd/conf/ssl.crt/caroot.crt

So, how the heck did this work anyway?
Well, I was wondering the same thing.

So I typed this: # cat /etc/httpd/conf/ssl.crt/server.crt
This showed the content of the server.crt file. I then took a look at my new certificate which I had pasted in the DA user control panel and it matched! I did the same for server.key and that matched as well.

So that means that the Key and Certificate that you paste into the Direct Admin user panel automagically updates these two files.

-Jason
 
Back
Top