From 2aeaea89c727468b3346d793be794473db4e9b74 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 2 Sep 2013 23:19:04 +1200 Subject: [PATCH] Fixed lighttpd configuration --- admin_manual/installation/installation_others.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_manual/installation/installation_others.rst b/admin_manual/installation/installation_others.rst index ec43a25fb..e63d4b559 100644 --- a/admin_manual/installation/installation_others.rst +++ b/admin_manual/installation/installation_others.rst @@ -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" }