Skip to content

Instantly share code, notes, and snippets.

@chrisvasey
Created April 1, 2020 08:33
Show Gist options
  • Save chrisvasey/df4402909448c5a32612995995515c81 to your computer and use it in GitHub Desktop.
Save chrisvasey/df4402909448c5a32612995995515c81 to your computer and use it in GitHub Desktop.
Nginx Leverage Browser Cache
location ~* \.(jpg|jpeg|png|gif|ico|css|js)$ {
expires 365d;
}
location ~* \.(pdf)$ {
expires 30d;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment