aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_simple.conf
blob: afc443dec6fd8acdfbeebfe159f666a555b9e1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<VirtualHost *:80>
        ServerName <%= name %>
        DocumentRoot  <%= location %>

        <Location />
            <IfModule mod_authz_core.c>
                Require all granted
            </IfModule>
            <IfModule !mod_authz_core.c>
                Allow from all
            </IfModule>
        </Location>
</VirtualHost>