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
在 Location 上下文中使用(根据 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;
这个我想多了。
在做了一些阅读之后,似乎导入是在服务器启动时评估的,所以你不能把它们放在一个条件中。
所以,我最终使用了
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