无法在 Apache2 中的端口 4001 上配置 SSL

无法在 Apache2 中的端口 4001 上配置 SSL

我正在尝试在端口 4001 上使用 SSL 配置 apache2,到目前为止我已完成以下操作:

端口配置文件

Listen 4001
<IfModule ssl_module>
        Listen 4001
</IfModule>

默认 SSL 配置文件

<VirtualHost 0.0.0.0:4001>
    DocumentRoot /var/www/html
    SSLEngine On
    SSLCertificateFile myfile.crt
    SSLCertificateKeyFile myfile.key
</VirtualHost>

之后,我重新启动了服务;我只能通过 http 访问该网站,https 还不能工作。

然后,我运行:

sudo a2enmod ssl
sudo a2ensite default-ssl
sudo service apache2 restart 

现在,该服务可能由于之前的命令而无法启动。

有人知道我还需要做什么才能在端口 4001 上配置 SSL 吗?

相关内容