aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/templates/vhost_repository.conf
blob: 234a38e8381074d1616d7f2118774ab29caf4399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%
repository_root = "/distrib/bootstrap"
buildsystem_nodes = "2a02:2178:2:7::3, 2a02:2178:2:7::4"
%>

<VirtualHost *:80>
        ServerName repository.<%= domain %>
        DocumentRoot <%= repository_root %>
        <Directory  <%= repository_root %>>
          Order deny,allow
          Deny from all
          Allow from localhost, 127.0.0.1
          Allow from <%= buildsystem_nodes %>
          Allow from .<%= domain %>
          Options Indexes FollowSymLinks
        </Directory>
</VirtualHost>