Certificates

donkeyKICK

Verified User
Joined
Jul 24, 2007
Messages
393
I want to setup squirrelmail to use the same certificate that is used by DA, I have read previous posts, but actually got more lost. I simply want to use the certs setup during the DA install. Is there an easy way to do this? If so, how?

Thanks!
 
Last edited:
You can do that.

There are several methods; the easiest way is to make changes to the main domain in /etc/httpd/conf/httpd.conf, the section for the SSL port (443) to point to the same key and cert files as you set up for DA during the DA install.

Jeff
 
Got it working, thanks!

It working, thanks Jeff

I replaced the 2 lines commented out with the 2 not commented (in the file /etc/httpd/conf/httpd.conf):

Code:
<VirtualHost 147.203.6.77:443>
 
# SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
# SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
 
SSLCertificateFile /usr/local/directadmin/conf/cacert.pem
SSLCertificateKeyFile /usr/local/directadmin/conf/cakey.pem
 
</VirtualHost>
 
Last edited:
Back
Top