disable nginx caching for certain file types

后端 未结 1 1775
闹比i
闹比i 2021-01-18 08:12

I have nginx setup, acting as a reverse proxy to apache. However, I need to disable caching for gifs. How can I do this on nginx?

Thanks

相关标签:
1条回答
  • 2021-01-18 08:46

    This should do the trick:

    set $no_cache "";
    if ($request_uri ~* \.gif$) {
      set $no_cache "1";
    }
    proxy_no_cache $no_cache;
    proxy_cache_bypass $no_cache;
    
    0 讨论(0)
提交回复
热议问题