nginx não serve arquivos

1

Eu copiei um diretório para /var/www named mysite ; então eu criei um arquivo em sites-available para configurar a configuração para apontar para este diretório ( /etc/nginx/sites-available/mysite ) e um symlink dele em sites-enabled ( /etc/nginx/sites-enabled/mysite ):

server {
    listen 4000 default_server;
    listen [::]:4000 default_server;

    root /var/www/otsui;

    index index.html;

    server_name _;

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

}

Mas quando tento obter http://localhost:4000/ , recebo This site can’t be reached page, o que significa que nada está sendo exibido.

Eu também tentei reiniciar o nginx service.

Eu tenho uma jessie debian.

Estes são meus firewalls:

root@mylab:/var/www# iptables -L
Chain INPUT (policy ACCEPT)
target     prot opt source               destination         

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination         
DOCKER-USER  all  --  anywhere             anywhere            
DOCKER-ISOLATION  all  --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere             ctstate RELATED,ESTABLISHED
DOCKER     all  --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere             ctstate RELATED,ESTABLISHED
DOCKER     all  --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere            
ACCEPT     all  --  anywhere             anywhere            

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination         

Chain DOCKER (2 references)
target     prot opt source               destination         

Chain DOCKER-ISOLATION (1 references)
target     prot opt source               destination         
DROP       all  --  anywhere             anywhere            
DROP       all  --  anywhere             anywhere            
RETURN     all  --  anywhere             anywhere            

Chain DOCKER-USER (1 references)
target     prot opt source               destination         
RETURN     all  --  anywhere             anywhere            

Eu também tentei copiar meus arquivos do site para o diretório padrão, por exemplo, /var/www/html ; mas navegar para http://127.0.0.1:3000/ no navegador ainda me mostra a página de boas-vindas nginx , mesmo que eu tenha reiniciado o serviço nginx .

    
por Zeinab Abbasimazar 18.11.2017 / 14:39

1 resposta

0

Eu resolvi o problema; O problema é que eu não incluí o /etc/nginx/sites-enabled/ em /etc/nginx/nginx.conf para carregar as configurações. Depois de um restart no serviço nginx , meu aplicativo da web foi completamente implantado.

Devo mencionar que também verifiquei a saída do comando nginx -t para ter certeza de que todas as alterações nas configurações nginx estão corretas; a saída para uma reconfiguração bem-sucedida é:

nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

BTW, estas são minhas configurações nginx agora:

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

#    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}
    
por 25.11.2017 / 12:14