aboutsummaryrefslogtreecommitdiffstats
path: root/util/.htaccess
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-06-22 09:16:33 +1000
committerredmatrix <redmatrix@redmatrix.me>2015-06-22 09:16:33 +1000
commit1c9a222697d7816227032f23e28e39348b697241 (patch)
treee66b732a6b62b1ad0e0c5ee4e0e0775a29ee8d0f /util/.htaccess
parentb197c7420a1d3f0712127bed6e1216b76ae9a126 (diff)
parentc3fa0a3ca73cf0935de143bd4a1cbd11ea74acb3 (diff)
downloadvolse-hubzilla-1c9a222697d7816227032f23e28e39348b697241.tar.gz
volse-hubzilla-1c9a222697d7816227032f23e28e39348b697241.tar.bz2
volse-hubzilla-1c9a222697d7816227032f23e28e39348b697241.zip
Merge pull request #355 from dawnbreak/master
Compatible update for .htaccess v2.
Diffstat (limited to 'util/.htaccess')
-rw-r--r--util/.htaccess11
1 files changed, 8 insertions, 3 deletions
diff --git a/util/.htaccess b/util/.htaccess
index b311c14c2..a0a0d72d9 100644
--- a/util/.htaccess
+++ b/util/.htaccess
@@ -1,5 +1,10 @@
Options -Indexes
-# Remove the following line or modify it to run the string translator utility
-Deny from all
-
+# Remove the following lines or modify it to run the string translator utility
+<IfModule mod_authz_core.c>
+ Require all denied
+</IfModule>
+<IfModule !mod_authz_core.c>
+ Order deny,allow
+ Deny from all
+</IfModule>