Skip to content

Instantly share code, notes, and snippets.

@nosun
Forked from eagleon/nginx.time.conf
Created December 28, 2018 04:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nosun/1c523263101f0ae63e42ad589ce3bc54 to your computer and use it in GitHub Desktop.
Save nosun/1c523263101f0ae63e42ad589ce3bc54 to your computer and use it in GitHub Desktop.
Nginx expire 时间单位
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ {
etag off; #关闭etag
expires 1d; #有效期一天
# expires的单位可以使用
# ms: 毫秒
# s: 秒
# m: 分钟
# h: 小时
# d: 天
# w: 星期
# M: 月 (30 天)
# y: 年 (365 天)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment