Skip to content

Instantly share code, notes, and snippets.

@RickieL
Created February 2, 2018 07:41
Show Gist options
  • Save RickieL/8e4008389c8fce2feb204b147bffabdf to your computer and use it in GitHub Desktop.
Save RickieL/8e4008389c8fce2feb204b147bffabdf to your computer and use it in GitHub Desktop.
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