nginx location的处理

    server {
        listen            80;
        server_name       www.test.com;
        charset           UTF-8;
        root              /var/www/nbd/current/public;
        location ~* {
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Forwarded-For $remote_addr;
          proxy_set_header Host $host;
          proxy_pass http://test.passenger;
        } 
    }


有这样一个链接www.test.com/image/1.png


是到location呢还是到root目录去取。 



答案:location  想想nginx是怎么处理url的。


你可能感兴趣的:(nginx location的处理)