-
-
Save TheLastCicada/ee6775c5f269f5f5389f to your computer and use it in GitHub Desktop.
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
# Directives to send expires headers and turn off 404 error logging. | |
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ { | |
expires 24h; | |
log_not_found off; | |
try_files $uri $uri/ @production; | |
} | |
location @production { | |
resolver 8.8.8.8; | |
proxy_pass http://www.livesite.com/$uri; | |
} |
No good reason I can think of - especially for the file types in question.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@jeremyfelt @TheLastCicada Any reason there's a
$uri $uri/
in try_files, instead of just$uri
?