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

# Deny all direct access to temporary files
# Temp files are for processing only, not public access
Order Deny,Allow
Deny from all

# Prevent directory listing
Options -Indexes
DirectoryIndex disabled

# Disable PHP execution
php_flag engine off

# Block all direct file access
<Files *>
    Order Deny,Allow
    Deny from all
</Files>

# NOTE: Temp files should be automatically cleaned up
# Set up a cron job to delete files older than 7 days
# Example: find /path/to/temp -type f -mtime +7 -delete
