gpt4 book ai didi

如果 header 不存在,nginx 拒绝请求

转载 作者:行者123 更新时间:2023-12-04 03:49:59 28 4
gpt4 key购买 nike

如果 header StaticCookie,我需要 nginx 来拒绝请求不存在。我不在乎它的值(value),我只需要它存在。

我想到的是这个,但这不起作用。 Nginx 允许根本没有 header 的请求。

    if ($http_StaticCookie = false) {
return 403;
}



root /usr/share/asuno/www;

location ~* /css/ {
expires max;
}

location ~* /js/ {
expires max;
}

我看到了这个帖子——
Nginx: Reject request if header is not present or wrong - 但它处理定义的标题值。我需要的是检查标题是否存在。

我试过把 location if 中的指令子句,但随后 nginx 会在尝试读取配置时引发错误。

如何才能做到这一点?

最佳答案

Alexey Ten 的评论是正确的,谢谢。

if ($http_StaticCookie = "") { return 403; }

关于如果 header 不存在,nginx 拒绝请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35342049/

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