# Deny all direct HTTP access to uploaded files
# All files should be served through download_doc.php with access control
<IfModule mod_authz_core.c>
    Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
    Order deny,allow
    Deny from all
</IfModule>
