无法使用 letsencrypt 证书通过 https 访问网站

无法使用 letsencrypt 证书通过 https 访问网站

因此我们有网站(很快就会被论坛取代,因此我需要 SSL),但是当你使用 https 访问我超时了。我在 Debian 上使用 apache2,并使用 getssl 和 letsencrypt 生成了我的 SSL 证书。这是我的 sites-enabled 文件夹中的 m.conf:

LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so
Listen 443

<VirtualHost *:443>
    ServerName m.site.perkelle.com

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/test/

    ErrorLog ${APACHE_LOG_DIR}/mc.site.perkelle.com.error.log
    CustomLog ${APACHE_LOG_DIR}/mc.site.perkelle.com.access.log combined

    LogLevel warn

    SSLEngine on
    SSLCertificateFile /etc/ssl/mc.site.perkelle.com/mc.site.perkelle.com.crt
    SSLCertificateKeyFile /etc/ssl/mc.site.perkelle.com/mc.site.perkelle.com.key

    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/test/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>
</VirtualHost>

谢谢

相关内容