Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/.htaccess')
-rw-r--r--config/.htaccess21
1 files changed, 15 insertions, 6 deletions
diff --git a/config/.htaccess b/config/.htaccess
index 853aed187d3..192cdd2aa93 100644
--- a/config/.htaccess
+++ b/config/.htaccess
@@ -1,14 +1,23 @@
-# line below if for Apache 2.4
+# Section for Apache 2.4 and 2.5
<ifModule mod_authz_core.c>
-Require all denied
+ Require all denied
+</ifModule>
+<ifModule mod_access_compat.c>
+ Deny from all
+ Satisfy All
</ifModule>
-# line below if for Apache 2.2
+# Section for Apache 2.2
<ifModule !mod_authz_core.c>
-deny from all
+ <ifModule !mod_access_compat.c>
+ <ifModule mod_authz_host.c>
+ Deny from all
+ </ifModule>
+ Satisfy All
+ </ifModule>
</ifModule>
-# section for Apache 2.2 and 2.4
+# Section for Apache 2.2 to 2.5
<ifModule mod_autoindex.c>
-IndexIgnore *
+ IndexIgnore *
</ifModule>