# Protect the proxy config from being fetched directly over the web.
<Files "config.php">
    Require all denied
</Files>

# Older Apache fallback
<IfModule !mod_authz_core.c>
    <Files "config.php">
        Order allow,deny
        Deny from all
    </Files>
</IfModule>
