Problema ao instalar o LEMP no Linux Mint

0

Eu tenho tentado instalar a pilha LEMP no Linux Mint seguindo estas instruções: link

No entanto, quando tentei carregar o link como o passo final, obtive

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

Tudo parecia estar funcionando bem antes disso.

O conteúdo do arquivo /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;
    }
}

Alguma idéia?

    
por ak93 01.05.2018 / 06:38

1 resposta

0

Verifique se o nginx é o único programa que escuta a porta 80. Por exemplo, se você tiver o apache2 em execução, isso é possível, já que os dois servidores ouvem a mesma porta e ocorre confusão. Aqui está um link útil link Além disso, dependendo do navegador que você está usando ao escrever o url, jogue um pouco com o url, especifique a porta: 192.168.1.5:80 ou tente com o domínio do servidor.

    
por 01.05.2018 / 13:47