Linux Mint에 LEMP를 설치할 때 발생하는 문제

Linux Mint에 LEMP를 설치할 때 발생하는 문제

저는 다음 지침에 따라 Linux Mint에 LEMP 스택을 설치하려고 했습니다.https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in-ubuntu-16-04

그런데 로드하려고 하면http://192.168.1.5마지막 단계로 나는

This site can’t be reached
192.168.1.5 took too long to respond.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_TIMED_OUT

그때까지는 모든 것이 잘 작동하는 것 같았습니다.

문서 내용 /etc/nginx/sites-available/default:

# Default server configuration
#
server {
    listen 80 default_server;
    listen [::]:80 default_server;
    root /var/www/html;
    server_name 192.168.1.5;

    location / {
        try_files $uri $uri/ =404;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;

    }
    location ~ /\.ht {
        deny all;
    }
}

어떤 아이디어가 있나요?

답변1

nginx가 포트 80을 수신하는 유일한 프로그램인지 확인하세요. 예를 들어, apache2도 실행 중인 경우 두 서버가 모두 동일한 포트를 수신하고 혼란이 발생하기 때문에 이것이 가능합니다. 유용한 링크입니다https://www.cyberciti.biz/faq/find-linux-what-running-on-port-80-command/ 또한 URL 작성 시 사용하는 브라우저에 따라 URL을 약간 조정하거나 포트: 192.168.1.5:80을 지정하거나 서버 도메인을 사용해 보세요.

관련 정보