# Deny all access to scripts directory
# This directory contains CLI scripts that should not be web accessible

<IfModule mod_authz_core.c>
    Require all denied
</IfModule>

<IfModule !mod_authz_core.c>
    Order deny,allow
    Deny from all
</IfModule>
