Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hungthai1401/6ceef818fa41988ce8aa6e1403bb78ae to your computer and use it in GitHub Desktop.
Save hungthai1401/6ceef818fa41988ce8aa6e1403bb78ae 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