假设我有两个上游:upstream1
和upstream2
我还有API端点/api/thing
我想在nginx中配置两个位置,如下所示:
location /api/thing/? {
proxy_intercept_errors on;
proxy_pass http://upstream1;
}
location /api/thing/* {
proxy_intercept_errors on;
proxy_pass http://upstream2; }
在我使用常规regexp(非nginx配置语法)的位置:
在nginx配置方面是否可行?
答案 0 :(得分:0)
我会写:
location = /api/thing {
# upstream1
}
location = /api/thing/ {
# upstream1
}
location /api/thing/ {
# upstream2
}