nginx 根据header 中key值进行参数跳转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 根据header 中key值进行参数跳转相关的知识,希望对你有一定的参考价值。
需求:提供一个POST接口地址给第三方, 我方根据header头中source=5进行转发不同地址。
获取header中的key方法: $http_KEY
nginx location配置如下:
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;
}
}
以上是关于nginx 根据header 中key值进行参数跳转的主要内容,如果未能解决你的问题,请参考以下文章