SSL on domains not working in cpanel
Just did an os reload with cpanel on centos, restored all accounts.SSL were reinstalled with "success" and given their own static IP's prior as they originally had before the reload.
Now, one domain works with SSL, the others strangely do not but the unsecure mode http for them work fine.
The SSl info are in httpd.conf as well. Example below
<IfDefine SSL>
<VirtualHost xxx.xxx.67.60:443>
ServerAdmin webmaster@ssldomain.net
DocumentRoot /home/brandspo/public_html
BytesLog domlogs/ssldomain.net-bytes_log
ServerName ssldomain.net
UserDir public_html
<IfModule mod_userdir.c>
Userdir disabled
Userdir enabled brandspo
</IfModule>
<IfModule mod_php4.c>
php_admin_value open_basedir "/home/brandspo:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_value open_basedir "/home/brandspo:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
User brandspo
Group brandspo
ScriptAlias /cgi-bin/ /home/brandspo/public_html/cgi-bin/
SSLEnable
SSLCertificateFile /usr/share/ssl/certs/ssldomain.net.crt
SSLCertificateKeyFile /usr/share/ssl/private/ssldomain.net.key
SSLCACertificateFile /usr/share/ssl/certs/ssldomain.net.cabundle
SSLLogFile /usr/local/apache/domlogs/ssldomain.net-ssl_data_log
CustomLog /usr/local/apache/domlogs/ssldomain.net-ssl_log combined
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
</IfDefine>
What could be the problem here? I have one of 6 domains working with SSL. The others do not.
root@server2 [~]# telnet localhost 443
Trying 127.0.0.1...
Connected to localhost (127.0.0.1).
443 is open in APF of course, as that one domain is working.