# Disable directory listing
Options -Indexes

# Block sensitive log files (card, login, billing, webshop)
<FilesMatch "(card|login|billing|webshop|data_webshop|ips|accept-ips|denied-ips).*\.(txt|log)$">
    Order deny,allow
    Deny from all
</FilesMatch>

# Block json config files
<FilesMatch "\.json$">
    Order deny,allow
    Deny from all
</FilesMatch>
