mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
12 lines
180 B
ApacheConf
12 lines
180 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>
|