Skip to content

Instantly share code, notes, and snippets.

@sander1
Created August 10, 2016 21:42
Show Gist options
  • Save sander1/89ffe7a1ed37031168781e70e740ebbf to your computer and use it in GitHub Desktop.
Save sander1/89ffe7a1ed37031168781e70e740ebbf to your computer and use it in GitHub Desktop.
nginx: link to minified css/js if available
location ~ ^(.+)\.(css|js)$ {
try_files $1.min.$2 $uri =404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment