我有 2 個專案在同一伺服器上的不同連接埠上運行 - 80 和 8005。這些連接埠分別指向 example1.com 和 example2.com。我使用 example1.com 安裝了 SSL 證書https://tecadmin.net/install-lets-encrypt-create-ssl-ubuntu/它起作用了。但是,當我嘗試 example2.com 時,出現此錯誤 -Problem binding to port 80: Could not bind to IPv4 or IPv6.
我猜它需要 example2.com 為端口 80,有解決方法嗎?如何為 example2.com 安裝 SSL 憑證?
這就是 /sites-enabled 的樣子
example1.com-le-ssl.conf example1.com.conf example2.com.conf
example1.com-le-ssl.conf -
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName example1.com
ServerAlias www.example1.com
ServerAdmin [email protected]
DocumentRoot /var/www/html/example1/public
<Directory /var/www/html/example1/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/example1.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example1.com/privkey.pem
</VirtualHost>
</IfModule>
example1.com.conf -
<VirtualHost *:80>
ServerName example1.com
ServerAlias www.example1.com
ServerAdmin [email protected]
DocumentRoot /var/www/html/example1/public
<Directory /var/www/html/example1/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
RewriteEngine on
RewriteCond %{SERVER_NAME} =example1.com [OR]
RewriteCond %{SERVER_NAME} =www.example1.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
example2.com.conf
<VirtualHost *:80>
ServerName example2.com
ServerAlias www.example2.com
#ServerAdmin [email protected]
DocumentRoot /var/www/html/example2/public
<Directory /var/www/html/example2/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:8001>
ServerName example2.com
ServerAlias www.example2.com
#ServerAdmin [email protected]
DocumentRoot /var/www/html/example2/public
<Directory /var/www/html/example2/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
SSLEngine on
Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/example2.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example2.com/privkey.pem
</VirtualHost>