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

# Deny all direct access to backups
# Backups should only be accessed via authenticated PHP scripts
Order Deny,Allow
Deny from all

# Prevent directory listing
Options -Indexes

# Disable PHP execution
php_flag engine off

# Security headers
<IfModule mod_headers.c>
    Header set X-Robots-Tag "noindex, nofollow"
</IfModule>

# Additional protection
<Files *>
    Order Deny,Allow
    Deny from all
</Files>
