File websiteatschool.conf.nonsuse of Package websiteatschool
# Example configuration for a siteatschool repository
#
# apache can serve the static files directly
Alias /siteatschool "/srv/www/siteatschool/"
<Directory /srv/www/siteatschool/>
AllowOverride AuthConfig Limit
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAll>
Require all granted
</RequireAll>
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order allow,deny
Allow from all
</IfModule>
</Directory>