标签: caching nginx
我有nginx设置,充当apache的反向代理。 但是,我需要禁用GIF的缓存。 我怎么能在nginx上做到这一点?
由于
答案 0 :(得分:5)
这应该可以解决问题:
set $no_cache ""; if ($request_uri ~* \.gif$) { set $no_cache "1"; } proxy_no_cache $no_cache; proxy_cache_bypass $no_cache;