Merge pull request #317 from bizonix/master

Disable viewing dotfiles (.htaccess, .svn, .git, etc.)
This commit is contained in:
Joshua Tauberer 2015-02-09 12:53:32 -05:00
commit 94053d8432
1 changed files with 7 additions and 0 deletions

View File

@ -54,6 +54,13 @@ server {
alias /var/lib/mailinabox/mozilla-autoconfig.xml;
}
# Disable viewing dotfiles (.htaccess, .svn, .git, etc.)
location ~ /\.(ht|svn|git|hg|bzr) {
log_not_found off;
access_log off;
deny all;
}
# Roundcube Webmail configuration.
rewrite ^/mail$ /mail/ redirect;
rewrite ^/mail/$ /mail/index.php;