Skip to content

Instantly share code, notes, and snippets.

@vladyslav2
Created May 9, 2016 19:24
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 vladyslav2/bf95a99c831b8907f6fc10606af2e513 to your computer and use it in GitHub Desktop.
Save vladyslav2/bf95a99c831b8907f6fc10606af2e513 to your computer and use it in GitHub Desktop.
nginx static and media files configutaion
location /static {
expires 1d;
access_log off;
log_not_found off;
break;
}
location /media {
expires max;
access_log off;
log_not_found off;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment