Blob Blame History Raw
#
# Drupal is an open source content management platform powering
# millions of websites and applications. It’s built, used, and
# supported by an active and diverse community of people around
# the world.
#

Alias /drupal8 __DRUPAL8__

<Directory __DRUPAL8__/>
    # Apache 2.4
    <IfModule mod_authz_core.c>
        Require local
    </IfModule>

    # Apache 2.2
    <IfModule !mod_authz_core.c>
        Order Deny,Allow
        Deny from all
        Allow from 127.0.0.1
        Allow from ::1
    </IfModule>

    AllowOverride All

    Include conf.d/drupal8.htaccess
</Directory>

<Directory __DRUPAL8__/vendor/>
    Include conf.d/drupal8.deny-access
</Directory>

<Directory __DRUPAL8__/core/vendor/>
    Include conf.d/drupal8.deny-access
</Directory>

<Directory __DRUPAL8_VAR__/files/private/>
    Include conf.d/drupal8.deny-access
</Directory>