nginx 根據header 中key值進行參數跳轉

需求:
提供一個POST接口地址給第三方, 我方根據header頭中source=5進行轉發不一樣地址。
獲取header中的key方法: $http_KEY
Nginx location配置以下:ide

location /test/ {
            if ($http_source = "5"){
                proxy_pass http://10.83.74.164:9201;
                rewrite ^/test/(.*) /$1 break;
            }
            if ($http_source != "5"){
                proxy_pass http://10.83.74.164:9091;
                rewrite ^/test/(.*) /$1 break;
            }
        }
相關文章
相關標籤/搜索