Modifications to nginx configuration files

This commit is contained in:
David Duque 2020-04-20 13:05:58 +01:00
parent 9a6a35cadc
commit 2ce037af5e
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
2 changed files with 18 additions and 0 deletions

18
conf/nginx-custom.conf Normal file
View File

@ -0,0 +1,18 @@
# Expose this directory as static files.
root $ROOT;
index index.html index.htm;
# ADDITIONAL DIRECTIVES HERE
# Disable viewing dotfiles (.htaccess, .svn, .git, etc.)
# This block is placed at the end. Nginx's precedence rules means this block
# takes precedence over all non-regex matches and only regex matches that
# come after it (i.e. none of those, since this is the last one.) That means
# we're blocking dotfiles in the static hosted sites but not the FastCGI-
# handled locations for Nextcloud (which serves user-uploaded files that might
# have this pattern, see #414) or some of the other services.
location ~ /\.(ht|svn|git|hg|bzr) {
log_not_found off;
access_log off;
deny all;
}