如何修复配置文件中的资源路径?

时间:2013-11-13 12:06:15

标签: nginx

我在nginx-config下面有一个指定:

upstream Test {
    server 127.0.0.1:7766;    
}

server {
    listen 9988;
    root "E:\path\temp"; 

    location ~ \.(jpg|png)$ {      
        root /image;
}    
    location /test/ {
        proxy_pass http://Test;
    }
}

请求 http://mysite:9988/test 已成功代理 127.0.0.1:7766 。收到的页面有图像请求(例如“/ test / image / * .png”)。根据日志,这些路径是 C:/ image / test / image / * .png 而不是“E:\ path \ temp \ image \ * .png”(我期待这样的路径)。 我该如何解决?

0 个答案:

没有答案