Files

15 lines
304 B
ApacheConf
Raw Permalink Normal View History

# Apache 2.2
<IfModule !mod_authz_core.c>
<FilesMatch "^[0-9a-f]{40}(_small)?$">
Order deny,allow
Deny from all
</FilesMatch>
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
<FilesMatch "^[0-9a-f]{40}(_small)?$">
Require all denied
</FilesMatch>
</IfModule>