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

<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 .<%= domain %>
          Options Indexes FollowSymLinks
        </Directory>
</VirtualHost>