在 apache2.conf 文件中添加代码后虚拟主机无法正常工作

在 apache2.conf 文件中添加代码后虚拟主机无法正常工作

我正在尝试在我的网站上安装 SSL,但在虚拟主机中遇到问题。我在 /etc/apache2/apacha2.conf 中添加了以下代码并保存了它。

现在,当我尝试重新启动 Apache 时,出现以下错误

apache2.service 的作业失败,因为控制进程退出并显示错误代码。有关详细信息,请参阅“systemctl status apache2.service”和“journalctl -xe”。

<VirtualHost *:443>
        DocumentRoot /var/www/html
        ServerName example.com
                SSLEngine on
                SSLCertificateFile /etc/ssl/newssl/c42264bab5f4631.crt
                SSLCertificateKeyFile /etc/ssl/newssl/example.com.key
                SSLCertificateChainFile /etc/ssl/newssl/gd_bundle-g2-g1.crt
</VirtualHost>

相关内容