diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-04-25 11:47:06 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-04-25 11:47:06 +0200 |
commit | 6c20a014eaecd19c3f68143485c6f74891ee9643 (patch) | |
tree | 84bd8e37536e7f28a25afd7586c209d38a25d610 /config/.htaccess | |
parent | cd0c5990f895bcdce47acf2dbf11ebadd920a404 (diff) | |
parent | 3fc809dfd80a296d7da922a06f9e13d446b3d3f0 (diff) | |
download | nextcloud-server-6c20a014eaecd19c3f68143485c6f74891ee9643.tar.gz nextcloud-server-6c20a014eaecd19c3f68143485c6f74891ee9643.zip |
merge master into webdav-injection
Diffstat (limited to 'config/.htaccess')
-rw-r--r-- | config/.htaccess | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/.htaccess b/config/.htaccess new file mode 100644 index 00000000000..2421e9a1631 --- /dev/null +++ b/config/.htaccess @@ -0,0 +1,12 @@ +# line below if for Apache 2.4 +<ifModule mod_authz_core> +Require all denied +</ifModule> + +# line below if for Apache 2.2 +<ifModule !mod_authz_core> +deny from all +</ifModule> + +# section for Apache 2.2 and 2.4 +IndexIgnore * |