我正在使用AWS CloudFront在到达后端之前终止我的SSL,并且需要将此流量与非CloudFront流量区分开以在Nginx中设置proxy_set_header.
我认为最好的方法是检查X-Amz-Cf-Id标头(added by CloudFront),并在它出现时设置proxy_set_header.但是,我知道在Nginx if语句中设置proxy_set_header是不可能的,这导致了我的问题.
如何仅在该标头存在时设置proxy_set_header值?
一般的答案是你可以在if中设置变量,然后使用变量.像这样:
原文链接:https://www.f2er.com/nginx/434600.htmlset $variable "";
if ($http_X_Amz_Cf_Id) {
set $variable "somevalue";
}
proxy_set_header someheader $variable;