summaryrefslogtreecommitdiff
path: root/tdd/.htaccess
diff options
context:
space:
mode:
Diffstat (limited to 'tdd/.htaccess')
-rw-r--r--tdd/.htaccess16
1 files changed, 16 insertions, 0 deletions
diff --git a/tdd/.htaccess b/tdd/.htaccess
new file mode 100644
index 0000000..fad82c6
--- /dev/null
+++ b/tdd/.htaccess
@@ -0,0 +1,16 @@
+<Files tdd-protocol.php>
+ <IfModule !mod_authz_core.c> # Apache 2.2
+ Order allow,deny
+ Allow from all
+ </IfModule>
+ <IfModule mod_authz_core.c> # Apache 2.4
+ Require all granted
+ </IfModule>
+</Files>
+<IfModule !mod_authz_core.c> # Apache 2.2
+ Order allow,deny
+ Deny from all
+</IfModule>
+<IfModule mod_authz_core.c> # Apache 2.4
+ Require all denied
+</IfModule>