Fix ".well-know" rewrites

Fix a bug I introduces before. Normally dot files "." are hidden, but ownCloud has a purpose for some of these.

Fixes https://github.com/owncloud/documentation/issues/435#issuecomment-50216858
This commit is contained in:
josh4trunks
2014-07-26 08:39:27 -07:00
parent 4cc8a17570
commit 3ad3808ead

View File

@@ -425,7 +425,7 @@ Nginx Configuration
access_log off;
}
location ~ ^/(?:\.|data|config|db_structure\.xml|README) {
location ~ ^/(?:\.htaccess|data|config|db_structure\.xml|README) {
deny all;
}