Coremanaged SSL

From Cheatsheet
Revision as of 22:56, 22 May 2010 by Admin (talk | contribs) (Created page with '<center>Coremanaged SSL</center> To install a ssl certificate on a coremanaged box you will need to do the following. <pre>vim /etc/httpd/conf.d/ssl_vhosts.conf</pre> Then add t…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Coremanaged SSL

To install a ssl certificate on a coremanaged box you will need to do the following.

vim /etc/httpd/conf.d/ssl_vhosts.conf

Then add the following and modify it to have the paths and ip that you will be using for your new ssl domain.

<VirtualHost 69.167.155.113:443>

        ServerName labaik.verabill.com
        DocumentRoot /usr/share/phpmyadmin
        UseCanonicalName Off

        SSLEngine on
        SSLCertificateFile /etc/pki/tls/certs/labaik.verabill.com.crt
        SSLCertificateKeyFile /etc/pki/tls/private/labaik.verabill.com.key
        SSLCACertificateFile /etc/pki/tls/certs/labaik.verabill.com.cabundle
        SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown

</VirtualHost>