Revision
417
Author
blino
Date
2010-11-23 08:15:22 +0100 (Tue, 23 Nov 2010)

Log Message

allow repository http acces from buildsystem nodes
(hardcoding their IPv6 address since we have no reverse lookup on them)

Modified Paths

Modified: puppet/modules/buildsystem/templates/vhost_repository.conf
===================================================================
--- puppet/modules/buildsystem/templates/vhost_repository.conf	2010-11-23 02:19:39 UTC (rev 416)
+++ puppet/modules/buildsystem/templates/vhost_repository.conf	2010-11-23 07:15:22 UTC (rev 417)
@@ -1,5 +1,6 @@
 <%
 repository_root = "/distrib/bootstrap"
+buildsystem_nodes = "2a02:2178:2:7::3, 2a02:2178:2:7::4"
 %>
 
 <VirtualHost *:80>
@@ -9,6 +10,7 @@
           Order deny,allow
           Deny from all
           Allow from localhost, 127.0.0.1
+          Allow from <%= buildsystem_nodes %>
           Allow from .<%= domain %>
           Options Indexes FollowSymLinks
         </Directory>