Hello, I have the smae problem with all the websites on hosting.
In my log there is a message:
AH01909: SSL.helpdesk.improve.sk:443:0 server certificate does NOT include an ID which matches the server name
Here is my config file of Apache web server:
`<VirtualHost :80>
ServerAdmin webmaster@improve.sk
DocumentRoot "/www/wwwroot/helpdesk.improve.sk/public"
ServerName 343634b6.helpdesk.improve.sk
ServerAlias helpdesk.improve.sk
#errorDocument 404 /404.html
ErrorLog "/www/wwwlogs/helpdesk.improve.sk-error_log"
CustomLog "/www/wwwlogs/helpdesk.improve.sk-access_log" combined
#HTTP_TO_HTTPS_START
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SERVER_PORT} !443$
RewriteRule (.) https://%{SERVER_NAME}$1 [L,R=301]
</IfModule>
#HTTP_TO_HTTPS_END
#DENY FILES
<Files ~ (\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)$>
Order allow,deny
Deny from all
</Files>
#PHP
<FilesMatch \.php$>
SetHandler "proxy:unix:/tmp/php-cgi-74.sock|fcgi://localhost"
</FilesMatch>
#PATH
<Directory "/www/wwwroot/helpdesk.improve.sk/public">
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php index.html index.htm default.php default.html default.htm
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerAdmin webmaster@example.com
DocumentRoot "/www/wwwroot/helpdesk.improve.sk/public"
ServerName SSL.helpdesk.improve.sk
ServerAlias helpdesk.improve.sk
#errorDocument 404 /404.html
ErrorLog "/www/wwwlogs/helpdesk.improve.sk-error_log"
CustomLog "/www/wwwlogs/helpdesk.improve.sk-access_log" combined
#SSL
SSLEngine On
SSLCertificateFile /www/server/panel/vhost/cert/helpdesk.improve.sk/fullchain.pem
SSLCertificateKeyFile /www/server/panel/vhost/cert/helpdesk.improve.sk/privkey.pem
SSLCipherSuite EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5
SSLProtocol All -SSLv2 -SSLv3 -TLSv1
SSLHonorCipherOrder On
#PHP
<FilesMatch \.php$>
SetHandler "proxy:unix:/tmp/php-cgi-74.sock|fcgi://localhost"
</FilesMatch>
#DENY FILES
<Files ~ (\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)$>
Order allow,deny
Deny from all
</Files>
#PATH
<Directory "/www/wwwroot/helpdesk.improve.sk/public">
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php index.html index.htm default.php default.html default.htm
</Directory>
</VirtualHost>
`