ssl – 如果存在标头,则Nginx设置proxy_set_header

前端之家收集整理的这篇文章主要介绍了ssl – 如果存在标头,则Nginx设置proxy_set_header前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用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中设置变量,然后使用变量.像这样:

set $variable "";
if ($http_X_Amz_Cf_Id) {
  set $variable "somevalue";
}
proxy_set_header someheader $variable;
原文链接:https://www.f2er.com/nginx/434600.html

猜你在找的Nginx相关文章