Skip to content

Instantly share code, notes, and snippets.

@tompec
Created May 20, 2017 10:18
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 tompec/5d2d7b51c918c5c1429c503b9109b57b to your computer and use it in GitHub Desktop.
Save tompec/5d2d7b51c918c5c1429c503b9109b57b to your computer and use it in GitHub Desktop.
Leverage browser caching for Nginx server
server {
# Leverage browser caching
location ~* \.(jpg|jpeg|png|gif|ico|css|js|pdf)$ {
expires 7d;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment