Skip to content

Instantly share code, notes, and snippets.

@hn-support
Last active January 13, 2018 03:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hn-support/e73f88e9d0736c00be3fcd4042aeee17 to your computer and use it in GitHub Desktop.
Save hn-support/e73f88e9d0736c00be3fcd4042aeee17 to your computer and use it in GitHub Desktop.
block version control directory on nginx
# Skip .git, .htpasswd etc
location ~ /\.(git|svn|ht) {
    return 404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment