Welcome! Log In Create A New Profile

Advanced

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

B.R.
January 24, 2014 04:06PM
Hello,

On Fri, Jan 24, 2014 at 9:45 PM, Jeroen Ooms <jeroen.ooms@stat.ucla.edu>wrote:

> However, this bypasses the cache when either $http_cache_control OR
> $is_get is set. How can I achieve to set proxy_cache_bypass when both
> http_cache_control AND $is_get are set?
>

​The logic you wish imply using a single variable in proxy_cache_bypass
which is set if and only if both $http_cache_control and $_is_get are set.

Does the following ​work?

map $request_method $is_get {
default: "";
GET "true";
}

set $bypass "true"; # Defaults to true

# Each map then deactivates the $bypass variable if one
# of the variables linked with the AND logic is empty
map $http_cache_control $bypass {
default: "";
"": $bypass;
}

map $is_get $bypass {
default: "";
"": $bypass;
}

proxy_cache_methods POST;
​​​​​proxy_cache_bypass $bypass;
---
*B. R.*
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

Jeroen Ooms January 24, 2014 03:48PM

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

B.R. January 24, 2014 04:06PM

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

Jeroen Ooms January 24, 2014 09:42PM

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

B.R. January 24, 2014 10:06PM

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

Jonathan Kolb January 25, 2014 08:26AM

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

Jeroen Ooms January 25, 2014 10:28PM

Re: Using 2 intersection of conditions for proxy_cache_bypass (avoiding logical if/and)

António P. P. Almeida January 24, 2014 09:58PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 164
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready