Browse Source

Only request "IndexIgnore" if mod_autoindex is loaded

Signed-off-by: Robert Scheck <robert@fedoraproject.org>
tags/v12.0.0beta1
Robert Scheck 7 years ago
parent
commit
25a2cb8c6e
4 changed files with 8 additions and 0 deletions
  1. 2
    0
      apps/user_ldap/tests/.htaccess
  2. 2
    0
      build/.htaccess
  3. 2
    0
      config/.htaccess
  4. 2
    0
      lib/private/Setup.php

+ 2
- 0
apps/user_ldap/tests/.htaccess View File

@@ -11,4 +11,6 @@ Satisfy All
</ifModule>

# section for Apache 2.2 and 2.4
<ifModule mod_autoindex.c>
IndexIgnore *
</ifModule>

+ 2
- 0
build/.htaccess View File

@@ -9,4 +9,6 @@ deny from all
</ifModule>

# section for Apache 2.2 and 2.4
<ifModule mod_autoindex.c>
IndexIgnore *
</ifModule>

+ 2
- 0
config/.htaccess View File

@@ -9,4 +9,6 @@ deny from all
</ifModule>

# section for Apache 2.2 and 2.4
<ifModule mod_autoindex.c>
IndexIgnore *
</ifModule>

+ 2
- 0
lib/private/Setup.php View 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);

Loading…
Cancel
Save