merge #776 - some owncloud paths were improperly exposed over http

This commit is contained in:
Joshua Tauberer 2016-03-31 10:20:21 -04:00
commit 36d51bbde0

View file

@ -18,7 +18,10 @@
rewrite ^(/cloud/core/doc/[^\/]+/)$ $1/index.html;
location /cloud/ {
alias /usr/local/lib/owncloud/;
location ~ ^/(data|config|\.ht|db_structure\.xml|README) {
location ~ ^/cloud/(build|tests|config|lib|3rdparty|templates|data|README)/ {
deny all;
}
location ~ ^/cloud/(?:\.|autotest|occ|issue|indie|db_|console) {
deny all;
}
}