포트 80 바인딩 문제: IPv4 또는 IPv6에 바인딩할 수 없습니다.

포트 80 바인딩 문제: IPv4 또는 IPv6에 바인딩할 수 없습니다.

동일한 서버의 80과 8005라는 서로 다른 포트에서 실행되는 2개의 프로젝트가 있습니다. 이러한 포트는 각각 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>

관련 정보