mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-08 22:36:16 +01:00
bbb6f8e5f0
Also use spaces for indentation in the .htaccess files.
11 lines
192 B
ApacheConf
11 lines
192 B
ApacheConf
# 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>
|