# License API Client - Security Configuration

# Protect license.json from direct access
<Files "license.json">
    Order Allow,Deny
    Deny from all
</Files>

# Protect LicenseValidator.php from direct access (optional)
<Files "LicenseValidator.php">
    Order Allow,Deny
    Deny from all
</Files>

# Enable error reporting (disable in production)
# php_flag display_errors on
# php_value error_reporting E_ALL

# Prevent directory listing
Options -Indexes

# Enable mod_rewrite (if needed)
# RewriteEngine On
# RewriteBase /

# Force HTTPS (uncomment in production)
# RewriteCond %{HTTPS} off
# RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]

