# Protect data directory
<FilesMatch "^data/">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Block direct access to json files
<FilesMatch "\.json$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

# Block direct access to log files
<FilesMatch "\.log$">
    Order Allow,Deny
    Deny from all
</FilesMatch>
