This commit is contained in:
Philipp Dieter
2018-11-30 22:50:45 +01:00
commit baa56b6dc3
43 changed files with 1794 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# Apache < 2.3
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
Satisfy All
</IfModule>
# Apache >= 2.3
<IfModule mod_authz_core.c>
Require all denied
</IfModule>