# .htaccess for tenant root
# Generated: 2025-10-30 14:53:53
# Security configuration for tenant root directory
############################################################

# Deny direct access by default
Order Deny,Allow
Deny from all

# Allow safe file types to be served
<FilesMatch "\.(jpg|jpeg|png|gif|webp|pdf)$">
    Allow from all
</FilesMatch>

# Protect configuration files
<FilesMatch "\.(json|txt|log)$">
    Order Deny,Allow
    Deny from all
</FilesMatch>

# Disable directory listing
Options -Indexes
