Problemas com nginx e servindo de vários diretórios sob o mesmo domínio

1

Eu tenho a configuração nginx para servir em / usr / share / nginx / html, e isso é ótimo. Eu também quero adicioná-lo para servir de / home / user / public_html / map no mesmo domínio. Então:

my.domain.com colocaria os arquivos em / usr / share / nginx / html | meu.dominio.com/map . arquivos em / home / user / public_html / map

Com a configuração abaixo (/etc/nginx/nginx.conf) parece estar indo para meu.dominio.com/map/map conforme notado por:

2011/03/12 09:50:26 [error] 2626#0: *254 "/home/user/public_html/map/map/index.html" is forbidden (13: Permission denied), client: <edited ip address>, server: _, request: "GET /map/ HTTP/1.1", host: "<edited>"

Eu tentei algumas coisas, mas ainda não consigo cooperar, portanto, qualquer ajuda seria muito apreciada.

#######################################################################
#
# This is the main Nginx configuration file.  
#
#######################################################################

#----------------------------------------------------------------------
# Main Module - directives that cover basic functionality
#----------------------------------------------------------------------

user              nginx;
worker_processes  1;

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

pid        /var/run/nginx.pid;


#----------------------------------------------------------------------
# Events Module 
#----------------------------------------------------------------------

events {
    worker_connections  1024;
}


#----------------------------------------------------------------------
# HTTP Core Module
#----------------------------------------------------------------------

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;
    keepalive_timeout  65;    

    server {
        listen       80;
        server_name  _;
        #access_log  logs/host.access.log  main;

        location / {
            root   /usr/share/nginx/html;
            index  index.html index.htm;
        }

        location /map {
            root   /home/user/public_html/map;
            index  index.html index.htm;
        }

        error_page  404              /404.html;
        location = /404.html {
            root   /usr/share/nginx/html;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /usr/share/nginx/html;
        }
    }
    include /etc/nginx/conf.d/*.conf;
}
    
por Phase 12.03.2011 / 16:26

1 resposta

3

A diretiva root é o problema aqui. Citação do doc :

note: Keep in mind that the root will still append the directory to the request so that a request for "/i/top.gif" will not look in "/spool/w3/top.gif" like might happen in an Apache-like alias configuration where the location match itself is dropped. Use the alias directive to achieve the Apache-like functionality.

Basicamente, use apenas root para raízes real : se o conteúdo estiver em / use root. Se for terminar em uma subpasta, use alias:

location  /map/ {
  alias  /home/user/public_html/map/;
}

Verifique também em qual usuário o nginx está sendo executado e certifique-se de que esse usuário possa acessar /home/user/public_html/map

    
por 12.03.2011 / 16:39

Tags