如何为端口 8080 添加 SSL?在 apache2 ubuntu 20.04 中

如何为端口 8080 添加 SSL?在 apache2 ubuntu 20.04 中

我试图将我的 SSL 证书添加到端口 8080,但是当我通过 https 进入时,它告诉我这个错误:ERR_SSL_PROTOCOL_ERROR

这是我的subdomain_maindomain.onlin.conf:

<VirtualHost *:80>
  ServerName panel.example.online
  ServerAlias www.exmaple.online
</VirtualHost>

<VirtualHost *:443>
    ServerAdmin [email protected]
    ServerName panel.example.online
    ServerAlias www.panel.example.online
    DocumentRoot /var/www/pufferpanel
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
    SSLEngine on
    SSLCertificateFile /etc/ssl/example.online/example.online.crt
    SSLCertificateKeyFile /etc/ssl/example.online/example.key
    SSLCertificateChainFile /etc/ssl/example.online/example.online.ca-bundle
</VirtualHost>

答案1

改变路线

<VirtualHost *:443>

<VirtualHost *:443 *:8080>

相关内容