]> source.dussan.org Git - nextcloud-server.git/commitdiff
Only request "IndexIgnore" if mod_autoindex is loaded 3505/head
authorRobert Scheck <robert@fedoraproject.org>
Thu, 16 Feb 2017 10:45:11 +0000 (11:45 +0100)
committerRobert Scheck <robert@fedoraproject.org>
Mon, 20 Feb 2017 12:09:15 +0000 (13:09 +0100)
Signed-off-by: Robert Scheck <robert@fedoraproject.org>
apps/user_ldap/tests/.htaccess
build/.htaccess
config/.htaccess
lib/private/Setup.php

index 5e068d28661f9395b476a41b3d026733464007fa..6fde30e763a604f48fdb949d3090a455dc6fa68b 100755 (executable)
@@ -11,4 +11,6 @@ Satisfy All
 </ifModule>
 
 # section for Apache 2.2 and 2.4
+<ifModule mod_autoindex.c>
 IndexIgnore *
+</ifModule>
index c7a7b79feac0a42617fa026290f1047cfcf44943..853aed187d3e72639fbec68fba143c65c9697bb3 100644 (file)
@@ -9,4 +9,6 @@ deny from all
 </ifModule>
 
 # section for Apache 2.2 and 2.4
+<ifModule mod_autoindex.c>
 IndexIgnore *
+</ifModule>
index c7a7b79feac0a42617fa026290f1047cfcf44943..853aed187d3e72639fbec68fba143c65c9697bb3 100644 (file)
@@ -9,4 +9,6 @@ deny from all
 </ifModule>
 
 # section for Apache 2.2 and 2.4
+<ifModule mod_autoindex.c>
 IndexIgnore *
+</ifModule>
index 321e8ea4c6606b2fa33e3953432c84b4408091c9..b20614f897195ff6f27f0fc251e3f63fbc627897 100644 (file)
@@ -492,7 +492,9 @@ class Setup {
                $content.= "Satisfy All\n";
                $content.= "</ifModule>\n\n";
                $content.= "# section for Apache 2.2 and 2.4\n";
+               $content.= "<ifModule mod_autoindex.c>\n";
                $content.= "IndexIgnore *\n";
+               $content.= "</ifModule>\n";
 
                $baseDir = \OC::$server->getConfig()->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data');
                file_put_contents($baseDir . '/.htaccess', $content);