Created
May 9, 2016 19:24
-
-
Save vladyslav2/bf95a99c831b8907f6fc10606af2e513 to your computer and use it in GitHub Desktop.
nginx static and media files configutaion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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