我想以这样的方式配置nginx:
http://nginx-proxy-server.com/location1/filename.bin
的请求
代理http://location1.my-application-server.com/filename.bin
我该如何实现?
答案 0 :(得分:3)
location ~ ^/(.+)/(.*)$ {
resolver 1.1.1.1 8.8.8.8;
proxy_pass http://$1.my-application-server.com/$2$is_args$args;
}