Como corrigir o erro “404 não encontrado” na configuração do nginx

4

Acabei de instalar o nginx no debian e fazer a configuração básica (adicionar a parte do servidor) no arquivo nginx.conf

user www-data;
worker_processes  1;

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

events {
    worker_connections  1024;
    # multi_accept on;
}

http {
    include       /etc/nginx/mime.types;
    default_type application/octet-stream;
    access_log  /var/log/nginx/access.log;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
#    tcp_nodelay        on;

#    gzip  on;
#    gzip_disable "MSIE [1-6]\.(?!.*SV1)";

#    include /etc/nginx/conf.d/*.conf;
#    include /etc/nginx/sites-enabled/*;

    server {
        listen 80;
        server_name localhost;
        location / {
                root html;
                index index.html index.htm;
        }
        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root html;
        }
    }
}

# mail {
#     # See sample authentication script at:
#     # http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript
#
#     # auth_http localhost/auth.php;
#     # pop3_capabilities "TOP" "USER";
#     # imap_capabilities "IMAP4rev1" "UIDPLUS";
#
#     server {
#         listen     localhost:110;
#         protocol   pop3;
#         proxy      on;
#     }
#
#     server {
#         listen     localhost:143;
#         protocol   imap;
#         proxy      on;
#     }
# }

Eu sempre recebo a mensagem de erro "404 Not Found" insted da página index.html.

A pasta de instalação do Nginx é

/etc/nginx 

O arquivo de configuração está em

/etc/nginx/nginx.conf 

e index.html e 50x.html em

/etc/nginx/html 
pasta

.

O que estou fazendo errado? Obrigado.

    
por salafek 26.02.2012 / 19:31

1 resposta

7

Não vejo document_root nem root definido para caminhos onde index.html está localizado; defina-os para o respectivo caminho onde index.html é e todos devem funcionar.

    
por 26.02.2012 / 19:42