Installing an SSL certificate on Apache2 on Centos5
Checks to be made in
/etc/httpd/conf.d/ssl.conf
under <VirtualHost _default_:443>
1. ServerName www.yeandel.com:443
(Failure to set this will result in SSL_ERROR_RX_RECORD_TOO_LONG or "unsupported proxy" by Firefox)
2. SSLCertificateFile <path to> /www.yeandel.com.crt
This is the file sent by the SSL certificate provider.
3. Ensure SSLCertificateKeyFile is set to valid path to key
4. SSLCertificateChainFile <path to> gd_intermediate_bundle.crt
The bundle file comes with the certificate (at least with DoDaddy.
5. Check iptables, port 443 should be enabled.
6. Check ssl is installed (yum list | grep ssl)
7. Check router port forwarding is enabled for port 443.
8. If you... ... read more >>> kevinyeandel.wordpress.com