Я не понимаю (в Debian), почему я могу получить доступ к своему сайту с помощью http://www.myserver.com:443/ но не напрямую с https: // ...
Я использую LetsEncrypt, все мои сертификаты генерируются и работают. Вот мой ... / apache2 / site-enabled / default.conf:
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ServerName myServer.com
ServerAlias www.myServer.com
Redirect permanent / https://www.myServer.com/
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/MyServer.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/MyServer.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/MyServer.com/fullchain.pem