NGINX 反向代理:proxy_cache 位于 if 块内 - 可能吗?

NGINX 反向代理:proxy_cache 位于 if 块内 - 可能吗?

我认为从一小段代码开始是最明智的:

    location ^~ /test/ {
            proxy_pass              http://frontend;
            proxy_http_version      1.1;
            proxy_set_header        Connection "";
            proxy_set_header        Host $host;
            proxy_set_header        X-Real-IP $remote_addr;
            proxy_set_header        X-Real-Port $server_port;
            if ( $remote_addr ~* "123.123.123.123" ) {
                    proxy_cache            cache_base;
                    proxy_cache_valid      720m;
            }
    }

因此,本质上我们想要做的是根据条件 IF 语句设置代理缓存。

上述方法不起作用,因为 proxy_cache 在 IF 中无效。

有谁知道如何根据众多 nginx 内部变量之一的正则表达式匹配来代理缓存?

笔记:

我们基本上希望根据 $remote_addr 正则表达式禁用/启用 proxy_caching。不指定不同的 proxy_cache 值。

谢谢。

答案1

看来你真正想要的是结合地理变量proxy_cache_bypassproxy_no_cache

geo $skip_cache {
  default 1;
  123.123.123.123/32 0;
  1.2.3.4/32 0;
  10.0.0.0/8 0;
}

server {
  location ^~ /test/ {
    proxy_pass              http://frontend;
    proxy_http_version      1.1;
    proxy_set_header        Connection "";
    proxy_set_header        Host $host;
    proxy_set_header        X-Real-IP $remote_addr;
    proxy_set_header        X-Real-Port $server_port;
    proxy_cache            cache_base;
    proxy_cache_valid      720m;

    # When $skip_cache is 1, the cache will be bypassed, and
    # the response won't be eligible for caching.
    proxy_cache_bypass     $skip_cache;
    proxy_no_cache         $skip_cache;
  }
}

答案2

在 nginx 配置中,“If” 通常是一种不好的做法。您可以使用 map 模块来使事情正常运作。请参阅http://nginx.org/en/docs/http/ngx_http_map_module.html http://wiki.nginx.org/HttpMapModule

map $remote_addr $matched_ip_location { 
123.123.123.123 @cache; 
default         @default; 
} 
... 
location ^~ /test/ {
 ... 
rewrite ^ $matched_ip_location
}
location @cache {
    ...
    proxy_cache            cache_base;
    proxy_cache_valid      720m;
}
location @default {
   ...
}

相关内容