Skip to content

Instantly share code, notes, and snippets.

@aprakasa
Created January 2, 2018 18:08
Show Gist options
  • Save aprakasa/d46f5fa7682410a547b46ca78a34c6af to your computer and use it in GitHub Desktop.
Save aprakasa/d46f5fa7682410a547b46ca78a34c6af to your computer and use it in GitHub Desktop.
Nginx Expires Header
location ~* \.(css|js)$ {
expires 365d;
}
location ~* \.(jpe?g|png|gif|ico|ogg|mp4|woff2?|ttf|otf|svg)$ {
expires 30d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment