Nginx作为反向代理和缓存,如果后端发送标头

时间:2012-09-13 14:51:26

标签: php caching nginx reverse-proxy

  1. 如果后端发送标头,Nginx可以缓存请求吗?也许包括TTL?
  2. 可以使用请求使缓存无效吗?以cookie为例?
  3. 我想从应用程序的逻辑控制缓存,而不是从nginx配置文件控制缓存,不要让请求到达apache / php。

1 个答案:

答案 0 :(得分:1)

http://wiki.nginx.org/HttpCoreModule#Variables给出了以下内容:

$sent_http_HEADER

The value of the HTTP response header HEADER when converted to lowercase and
with 'dashes' converted to 'underscores', 
e.g. $sent_http_cache_control, $sent_http_content_type...; 


$cookie_COOKIE

The value of the cookie COOKIE; 

如果你将它与if块结合使用,你可以做类似的事情:

if ($sent_http_your_added_header = "") { 
  proxy_cache your_cache_zone;
}

if ($cookie_BYPASS = "1") {
  proxy_bypass $cookie_BYPASS;
}

注意:如果BYPASS cookie的值为1或0,您实际上可以忘记if和仅使用$ cookie_BYPASS,请参阅http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_bypass

随着缓存时间的延长,正如http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_valid所解释的那样,nginx响应“X-Accel-Expires”,“Expires”和“Cache-Control”标头 (除非你告诉它不要使用proxy_ignore_headers指令)