So here are the certificates: http://i.imgur.com/Ggd0TCI.png
Here’s ssl-default.conf:
SSLCertificateFile /etc/ssl/certs/iRedMail_CA.pem
SSLCertificateKeyFile /etc/ssl/private/iRedMail.key
SSLCertificateFile /etc/ssl/droforce.net.crt
SSLCertificateKeyFile /etc/ssl/droforce.net.key
SSLCertificateFile /etc/ssl/AddTrustExternalCARoot.crt
SSLCertificateFile /etc/ssl/COMODORSAAddTrustCA.crt
SSLCertificateFile/etc/ssl/COMODORSADomainValidationSecureServerCA.crt
Here’s my error: http://i.imgur.com/PsjSwED.png
Not sure why this is happening.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
You don’t need iRedMail’s old self-signed certificate, so delete these two lines:
SSLCertificateFile /etc/ssl/certs/iRedMail_CA.pem
SSLCertificateKeyFile /etc/ssl/private/iRedMail.key
Now, you need to combine the three COMODO files into one file and set it as the SSLCACertificateFile:
cat /etc/ssl/COMODORSADomainValidationSecureServerCA.crt /etc/ssl/COMODORSAAddTrustCA.crt /etc/ssl/AddTrustExternalCARoot.crt | sudo tee /etc/ssl/COMODO_chain.crt
Your virtualhost config should look like this:
SSLCertificateFile /etc/ssl/droforce.net.crt
SSLCertificateKeyFile /etc/ssl/droforce.net.key
SSLCACertificateFile /etc/ssl/COMODO_chain.crt
Restart Apache and you should be good to go:
sudo service apache2 restart
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.