Skip to content

Instantly share code, notes, and snippets.

@lamarmarshall
Created December 7, 2015 17:50
Show Gist options
  • Save lamarmarshall/63fbced2ed465c045e86 to your computer and use it in GitHub Desktop.
Save lamarmarshall/63fbced2ed465c045e86 to your computer and use it in GitHub Desktop.
nginx location
location = / {
[ configuration A ]
}
location / {
[ configuration B ]
}
location /documents/ {
[ configuration C ]
}
location ^~ /images/ {
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
[ configuration E ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment