Ich habe 2 Projekte, die auf verschiedenen Ports laufen - 80 und 8005 auf demselben Server. Diese Ports zeigen jeweils auf example1.com und example2.com. Ich habe ein SSL-Zertifikat für example1.com installiert mithttps://tecadmin.net/install-lets-encrypt-create-ssl-ubuntu/und es hat funktioniert. Als ich es jedoch für example2.com versuchte, erhielt ich diesen Fehler -Problem binding to port 80: Could not bind to IPv4 or IPv6.
Ich vermute, dass example2.com Port 80 sein muss. Gibt es dafür eine Problemumgehung? Wie kann ich ein SSL-Zertifikat für example2.com installieren?
So sieht /sites-enabled aus
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>