在 Apache Ubuntu 上安装 Comodo 颁发的证书

在 Apache Ubuntu 上安装 Comodo 颁发的证书

我已按照Comodo 知识库

编辑我的/etc/apache2/apache2.conf/etc/apache2/mods-available/ssl.conf添加

<VirtualHost 197.***.**.**:443>
     SSLEngine On
     SSLCertificateFile /etc/ssl/crt/www_mydomain_com.crt
     SSLCertificateKeyFile /etc/ssl/key/www_mydomain_com.key
     SSLCertificateChainFile /etc/ssl/crt/www_mydomain_com.ca-bundle

     ServerAdmin [email protected]
     ServerName www.mydomain.com
     DocumentRoot /var/www/
     ErrorLog   /var/www/logs/error.log
     CustomLog /var/www/logs/access.log combined
</VirtualHost>

我也有 LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so 我测试了 HTTS telnet www.mydomain.com https但它不起作用。错误是telnet: Unable to connect to remote host: Connection timed out

有人能好心地给我指出正确的方向吗?

答案1

您忘记在 VirtualHost 语句中定义服务器端口。

不要忘记全面测试你的 SSL 配置,例如使用此检查器https://sslcheck.globalsign.com/

相关内容