Hi, this is the begining of
00_master.conf :
Code:
<VirtualHost IP:80>
RewriteEngine on
RewriteCond %{SERVER_PORTS} !^443$
RewriteRule ^(.*)?$ https://%{SERVER_NAME}/ [L,R]
</VirtualHost>
<VirtualHost IP:443>
SSLEngine On
SSLCertificateFile /etc/ssl/certs/domain.panel.tld.crt
SSLCertificateKeyFile /etc/ssl/certs/domain.panel.tld.key
...................
when I go to the panel via http, it redirects me to https, and all works fine
And this the
ispcp.conf :
Code:
# httpd [domain2.tld] sub entry BEGIN.
<VirtualHost IP:443>
SSLEngine On
SSLCertificateFile /etc/ssl/certs/domain2.tld.crt
SSLCertificateKeyFile /etc/ssl/certs/domain2.tld.key
When I go to
https://domain2.tld I got "Problem Loading Page' 'Unable to Connect'". But via http is still working. Why that? The 443 port is specified!