我使用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
上,标题为空。
我该如何解决?谢谢。