gpt4 book ai didi

if-statement - 仅当 cookie 存在时,如何有条件地覆盖 nginx 中的 header ?

转载 作者:行者123 更新时间:2023-12-04 05:01:24 24 4
gpt4 key购买 nike

有没有办法检查 nginx 中是否存在特定的 cookie? ?

现在我有一个像下面这样的部分来设置来自 cookie 的 header :

proxy_set_header x-client-id $cookie_header_x_client_id;

我想检查该 cookie 是否存在然后设置 header ,否则不要覆盖 header 。

我试过:

if ($cookie_header_x_client_id) {
proxy_set_header x-client-id $cookie_header_x_client_id;
}

但它不起作用并给出以下错误:

"proxy_set_header" directive is not allowed here in /etc/nginx/sites-enabled/website:45

有什么解决办法吗?

最佳答案

if 中只允许有限数量的指令nginx 中的上下文.这与 ifrewrite 的一部分有关。模块;因此,在其上下文中,您只能使用模块文档中特别概述的指令。

绕过这个“限制”的常见方法是使用中间变量建立状态,然后使用像proxy_set_header 这样的指令。使用这样的中间变量:

set $xci $http_x_client_id;
if ($cookie_header_x_client_id) {
set $xci $cookie_header_x_client_id;
}
proxy_set_header x-client-id $xci;

关于if-statement - 仅当 cookie 存在时,如何有条件地覆盖 nginx 中的 header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38038689/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com