我在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”(我期待这样的路径)。
我该如何解决?