# Background Downloader – Apache / cPanel
Options -Indexes

# Deny direct web access to internal PHP files
<FilesMatch "^(config|queue|downloader|resource-manager|worker|worker-cron)\.php$">
  <IfModule mod_authz_core.c>
    Require all denied
  </IfModule>
  <IfModule !mod_authz_core.c>
    Order deny,allow
    Deny from all
  </IfModule>
</FilesMatch>
