I've added a dedicated IP for a FQDN through WHM. nslookup confirms that this FQDN is pointing to my added IP. Typing in the FQDN using http:// shows also that it is pointing to my server. However, typing in the FQDN using https:// returns page not found.
I have installed the ssl crt, key through WHM and the FQDN is listed as an SSL Host in WHM. In httpd.conf I have the following, which all looks correct. What step have I missed for setting up a dedicated ip ssl through WHM? I've gone over it a 100 times and all seems exactly as it should be. Except for the dedicated IP it looks exactly the same as my shared ssl cert, which is working great. First time setting up dedicated ip ssl. Any ideas???
I have installed the ssl crt, key through WHM and the FQDN is listed as an SSL Host in WHM. In httpd.conf I have the following, which all looks correct. What step have I missed for setting up a dedicated ip ssl through WHM? I've gone over it a 100 times and all seems exactly as it should be. Except for the dedicated IP it looks exactly the same as my shared ssl cert, which is working great. First time setting up dedicated ip ssl. Any ideas???
Code:
<IfDefine SSL>
<VirtualHost xx.xx.xx.xxx:443>
ServerAdmin [email protected]
DocumentRoot /home/mydir/public_html
ServerName my.fqdn.tld
UserDir public_html
<IfModule mod_userdir.c>
Userdir disabled
Userdir enabled mydir
</IfModule>
<IfModule mod_php4.c>
php_admin_value open_basedir "/home/mydir:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_value open_basedir "/home/mydir:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
User myuser
Group myuser
ScriptAlias /cgi-bin/ /home/mydir/public_html/cgi-bin/
SSLEnable
SSLCertificateFile /usr/share/ssl/certs/my.fqdn.tld.crt
SSLCertificateKeyFile /usr/share/ssl/private/my.fqdn.tld.key
SSLCACertificateFile /usr/share/ssl/certs/my.fqdn.tld.cabundle
SSLLogFile /usr/local/apache/domlogs/my.fqdn.tld-ssl_data_log
CustomLog /usr/local/apache/domlogs/my.fqdn.tld-ssl_log combined
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
</IfDefine>