Nginx:如何防止在代理上缓存ajax请求?

时间:2011-05-21 19:30:41

标签: nginx

我目前需要避免缓存Ajax请求,但要保持缓存结果页面。

我知道哪些指令不允许缓存: proxy_no_cache或proxy_cache_bypass 但是如何添加适当的声明。通过if块? 声明应该是这样的吗?

$http_x_requested_with=XMLHttpRequest

谢谢;)

更新

喜欢那个?

proxy_cache_bypass  $http_x_requested_with=XMLHttpRequest;
proxy_no_cache      $http_x_requested_with=XMLHttpRequest;

2 个答案:

答案 0 :(得分:5)

在位置块中使用if块可能很棘手(http://wiki.nginx.org/IfIsEvil)。因此最好放在位置块之外。但是,这样做会影响性能,因为所有请求都必须通过if块。

最好使用map指令(http://wiki.nginx.org/HttpMapModule)来设置变量,然后在代理指令中使用该变量。性能更好(请参阅上述链接中的工作原理)。

map $http_x_requested_with $nocache {
    default 0;
    XMLHttpRequest 1;
}

server {
    ...
    proxy_cache_bypass  $nocache;
    proxy_no_cache      $nocache;
}

答案 1 :(得分:3)

这对我有用:

if ($http_x_requested_with = XMLHttpRequest) {
    set $nocache 1;
}