Здравствуйте.

Имеется вот такой конфиг

proxy_cache all;
proxy_cache_valid 200 404 1m;
proxy_cache_methods GET;


set $nocache_router  0;
if ($http_user_agent ~ "Apache-HttpClient") {
set $nocache_router  1;
      }

proxy_ignore_headers "Cache-Control" "Expires";
proxy_cache_key "$request_method|$http_x|$request_uri";
proxy_cache_bypass $nocache_router;
proxy_no_cache $nocache_router;

При выше указанном конфиге запросы на location завершаются 404 статусом.

Posted at Nginx Forum: 
https://forum.nginx.org/read.php?21,264631,264631#msg-264631

_______________________________________________
nginx-ru mailing list
[email protected]
http://mailman.nginx.org/mailman/listinfo/nginx-ru

Ответить