Fixed lighttpd configuration

This commit is contained in:
Ryan 2013-09-02 23:19:04 +12:00
parent 2c3e584b23
commit 2aeaea89c7

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"
}