Nginx 配置目标:
- 检查某个 cookie 是否存在(无论其值是什么)
- 如果不存在,则包含特定的配置导入。
- 我只想将规则应用到特定位置,无法将这些条件应用于全局 nginx 配置。它是特定于位置的。
目前,配置如下所示,并且运行良好:
location ~ ^/somedestination\.php(/|$) {
<... truncated other config lines for readability ...>
include includes/xx-cache-config.conf;
<... truncated other config lines for readability ...>
fastcgi_pass php-fpm:9000;
}
该服务器有许多位置块,每个位置块都有import
自己的缓存配置。这是一个仅限 cgi 的应用程序,这里没有直接的 try_files。
因此,为了实现上述目标,我正在尝试这样的方法,检查$cookie_user
变量是否存在,并且仅在 cooke 不存在时才应用我的配置:
location ~ ^/somedestination\.php(/|$) {
# only include cache config if the cookie is null/empty
if ($cookie_user = false) {
include includes/xx-cache-config.conf;
}
fastcgi_pass php-fpm:9000;
}
看起来合乎逻辑,但问题在于: 我偶然发现了这一点:https://www.nginx.com/resources/wiki/start/topics/depth/ifisevil/
问题:如果我们不应该if
在位置上下文中使用(根据 nginx 官方文档),我该怎么做?
编辑:以下是条件从句中包含的内容。现在nginx 总是包含这个配置,我现在的目标是有时不包括它(当 cookie 存在时)。
注意:区域配置本身包含在其他地方。此包含的配置启用它。
includes/xx-cache-config.conf
fastcgi_cache CACHE_TLRS;
fastcgi_cache_bypass $no_resource_cache;
fastcgi_no_cache $no_resource_cache;
fastcgi_cache_valid 200 301 48h;
fastcgi_cache_valid 302 4h;
fastcgi_cache_revalidate on;
fastcgi_cache_use_stale http_500 http_503 timeout updating;
fastcgi_cache_lock on;
fastcgi_cache_lock_age 15s;
fastcgi_cache_lock_timeout 5s;
fastcgi_ignore_headers cache-control;
fastcgi_cache_key "$scheme$host$uri";
add_header X-Cache $upstream_cache_status;
答案1
我是不是想太多了。
阅读一番之后,似乎导入是在服务器启动时进行评估的,因此不能将它们放在条件中。
因此,我最终利用了该指令,无需使用任何操作fastcgi_cache_bypass
就实现了目标。if
修改了现有的线路
fastcgi_cache_bypass $no_resource_cache;
改为:fastcgi_cache_bypass $cookie_user $no_resource_cache;
如果变量不为空且不为“0”,则将绕过缓存
文档链接:http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_cache_bypass