aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/templates/vhost_simple.conf
blob: 77b55287dd5011f6043494949e5d3419ed6aa1c5 (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>