I've just moved some accounts from old server to a new one throught the WHM Transfer. On the new server there is Apache 2.2.x installed.
I installed a self-signed SSL certificate on one domain through WHM. All went OK, no errors at all. But when I access https://DOMAIN.COM or https://DEDICATED_DOMAIN_IP, it doesn't work. I get simply "Page cannot be displayed" or "Connection Error" error message.
I checked the apache logs, including the error log and domain log and there is even no record about the connection attempts. It seems almost as if Apache was not listening on port 443?
At the very end of httpd.conf is this:
Perhaps there could be a problem with this section? It was added directly by WHM.
Any help is very appreciated!
Tomas
I installed a self-signed SSL certificate on one domain through WHM. All went OK, no errors at all. But when I access https://DOMAIN.COM or https://DEDICATED_DOMAIN_IP, it doesn't work. I get simply "Page cannot be displayed" or "Connection Error" error message.
I checked the apache logs, including the error log and domain log and there is even no record about the connection attempts. It seems almost as if Apache was not listening on port 443?
At the very end of httpd.conf is this:
Code:
<IfDefine SSL>
SSLMutex file:/usr/local/apache/logs/ssl_mutex
SSLPassPhraseDialog builtin
SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache
SSLSessionCacheTimeout 300
</IfDefine>
<IfDefine SSL>
<VirtualHost 123.123.123.123:443>
ServerAdmin [email protected]
DocumentRoot /home/USERNAME/public_html
ServerName DOMAIN.COM
UserDir public_html
<IfModule mod_suphp.c>
suPHP_UserGroup USERNAME USERNAME
</IfModule>
<IfModule !mod_disable_suexec.c>
SuexecUserGroup USERNAME USERNAME
</IfModule>
CustomLog /usr/local/apache/domlogs/DOMAIN.COM-bytes_log "%{%s}t %I .\n%{%s}t %O ."
ScriptAlias /cgi-bin/ /home/USERNAME/public_html/cgi-bin/
SSLEngine on
SSLCertificateFile /etc/ssl/certs/DOMAIN.COM.crt
SSLCertificateKeyFile /etc/ssl/private/DOMAIN.COM.key
ErrorLog /usr/local/apache/domlogs/DOMAIN.COM-ssl_data_log
CustomLog /usr/local/apache/domlogs/DOMAIN.COM-ssl_log combined
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
</IfDefine>
Any help is very appreciated!
Tomas