Last active 6 months ago

Revision a4e11e5ef5cc1a000656011f287f093fca335e66

debug_protect.htaccess Raw
1# protect access to log and sql files.
2<FilesMatch "\.(log|sql)(\.(t?gz|tar|gz|tar\.gz|7z|rar|bz2))?$">
3 <IfModule mod_authz_core.c>
4 Require all denied
5 </IfModule>
6 <IfModule !mod_authz_core.c>
7 Order deny,allow
8 Deny from all
9 </IfModule>
10</FilesMatch>