Skip to content

Instantly share code, notes, and snippets.

@x2002uwh
Forked from jaxbot/gist:5748513
Created November 28, 2018 17:52
Show Gist options
  • Save x2002uwh/abf812485ef477fd4df83e71a13d61b4 to your computer and use it in GitHub Desktop.
Save x2002uwh/abf812485ef477fd4df83e71a13d61b4 to your computer and use it in GitHub Desktop.
Block nginx from serving .git directories
location ~ /\.git {
deny all;
}
# or, all . directories/files in general (including .htaccess, etc)
location ~ /\. {
deny all;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment