我想从应用程序的逻辑控制缓存,而不是从nginx配置文件控制缓存,不要让请求到达apache / php。
答案 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指令)