# Utility Server CDN Manager
# Security and Performance Settings

# Disable directory browsing
Options -Indexes

# Protect plugin files
<FilesMatch "\.(php|php3|php4|php5|phtml)$">
    Order Deny,Allow
    Deny from all
</FilesMatch>

# Allow access to specific public files
<FilesMatch "^(index\.php|admin-ajax\.php)$">
    Allow from all
</FilesMatch>
