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/.htaccess24
1 files changed, 12 insertions, 12 deletions
diff --git a/config/.htaccess b/config/.htaccess
index 192cdd2aa93..857df9bbbac 100644
--- a/config/.htaccess
+++ b/config/.htaccess
@@ -1,23 +1,23 @@
# Section for Apache 2.4 and 2.5
-<ifModule mod_authz_core.c>
+<IfModule mod_authz_core.c>
Require all denied
-</ifModule>
-<ifModule mod_access_compat.c>
+</IfModule>
+<IfModule mod_access_compat.c>
Deny from all
Satisfy All
-</ifModule>
+</IfModule>
# Section for Apache 2.2
-<ifModule !mod_authz_core.c>
- <ifModule !mod_access_compat.c>
- <ifModule mod_authz_host.c>
+<IfModule !mod_authz_core.c>
+ <IfModule !mod_access_compat.c>
+ <IfModule mod_authz_host.c>
Deny from all
- </ifModule>
+ </IfModule>
Satisfy All
- </ifModule>
-</ifModule>
+ </IfModule>
+</IfModule>
# Section for Apache 2.2 to 2.5
-<ifModule mod_autoindex.c>
+<IfModule mod_autoindex.c>
IndexIgnore *
-</ifModule>
+</IfModule>