QUOTE
Do you have a hardware firewall?
Yes, but it doesn't cause trouble with other SSL sites. I am able to get to my WHM/cPanel securely.
QUOTE
have you looked inside you httpd.conf file to make sure the ssl is configured correctly?
Is there something specific I should be looking for? As far as I can tell everything look normal. Here is the VirtualHost entry for the domain:
<VirtualHost xxx.xxx.xxx.xxx:443>
ServerAdmin webmaster@www.domain.com
DocumentRoot /home/username/public_html
ServerName www.domain.com
CustomLog /usr/local/apache/domlogs/www.domain.com-ssl_log "%t %{version}c %{cipher}c %{clientcert}c"
User username
Group username
SSLEnable
SSLCertificateFile /usr/share/ssl/certs/www.domain.com.crt
SSLCertificateKeyFile /usr/share/ssl/private/www.domain.com.key
SSLCACertificateFile /usr/share/ssl/certs/www.domain.com.cabundle
SSLLogFile /var/log/www.domain.com
UserDir public_html
ScriptAlias /cgi-bin/ /home/username/public_html/cgi-bin/
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>