diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-01-28 12:42:15 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-01-28 13:15:32 +0100 |
commit | 20199dd168faaff624434ba9d5b24d77788d6fa1 (patch) | |
tree | c054ea334ee0b3f511732c95fb759e7a4673d4be /config | |
parent | 55142186deb9e163ce3519453ebfe93f6a446666 (diff) | |
download | nextcloud-server-20199dd168faaff624434ba9d5b24d77788d6fa1.tar.gz nextcloud-server-20199dd168faaff624434ba9d5b24d77788d6fa1.zip |
Reference module with `.c`
Fixes https://github.com/owncloud/core/issues/13657
Diffstat (limited to 'config')
-rw-r--r-- | config/.htaccess | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/.htaccess b/config/.htaccess index 2421e9a1631..c7a7b79feac 100644 --- a/config/.htaccess +++ b/config/.htaccess @@ -1,10 +1,10 @@ # line below if for Apache 2.4 -<ifModule mod_authz_core> +<ifModule mod_authz_core.c> Require all denied </ifModule> # line below if for Apache 2.2 -<ifModule !mod_authz_core> +<ifModule !mod_authz_core.c> deny from all </ifModule> |