Block access to all filesystem paths by default
authorClinton Ebadi <clinton@unknownlamer.org>
Sat, 23 May 2015 18:30:08 +0000 (14:30 -0400)
committerClinton Ebadi <clinton@unknownlamer.org>
Sat, 23 May 2015 18:30:08 +0000 (14:30 -0400)
Do not rely on the Debian base config to do this any more. We only
want to allow access to files in /afs.

files/conf.d/hcoop-security

index b63a546..44328ea 100644 (file)
@@ -1,3 +1,11 @@
+# Deny access to all paths by default
+
+<Directory />
+       AllowOverride None
+       Order Deny,Allow
+       Deny from all
+</Directory>
+
 # Permit Mapping directories from afs (it is readable by the entire
 # world as it is)
 
@@ -5,4 +13,4 @@
        AllowOverride None
        Order Deny,Allow
        Allow from all
-</Directory>
\ No newline at end of file
+</Directory>