如何模拟请求标头?

时间:2019-01-22 14:13:57

标签: kubernetes kubernetes-ingress

我使用nginx入口注释来模拟标头:

nginx.ingress.kubernetes.io/configuration-snippet: |
        proxy_set_header CF-IPCountry UA;

然后在nginx config中,我尝试使用其他名称代理此标头:

location / {
...
proxy_set_header User-Country-Code $http_cf_ipcountry;
...
}

但是在后端User-Country-Code上,标题为空。

我该如何解决?谢谢。

0 个答案:

没有答案