Merge pull request #169 from ry167/stable5

Fixed lighttpd configuration
This commit is contained in:
Bernhard Posselt 2013-09-02 04:35:01 -07:00
commit 66611fa183

View File

@ -109,13 +109,13 @@ It is important to note that the **.htaccess** files used by ownCloud to protect
Disable access to data folder::
$HTTP["url"] =^ "^/owncloud/data/" {
$HTTP["url"] =~ "^/owncloud/data/" {
url.access-deny = ("")
}
Disable directory listing::
$HTTP["url"] =^ "^/owncloud($|/)" {
$HTTP["url"] =~ "^/owncloud($|/)" {
dir-listing.activate = "disable"
}