# PPPHP — deny all direct web access to this private directory.
# Only relevant when the document root is the project root (no /public docroot);
# above a /public document root this file is never read. Never web-served either way.
<IfModule mod_authz_core.c>
  Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
  Order allow,deny
  Deny from all
</IfModule>
