X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=modules%2Froles%2Fmanifests%2Fstatic_mirror.pp;h=902a9b99b86807e3606f85613d8cafbbf05fbd21;hb=e66c073cdf3914dfb1064d4c1c87affae7b33314;hp=be25b5bd86a702f104b490e862d0a56140fb3896;hpb=a99babdcddb9c2f776c0a7f8355361caffc6ec20;p=mirror%2Fdsa-puppet.git diff --git a/modules/roles/manifests/static_mirror.pp b/modules/roles/manifests/static_mirror.pp index be25b5bd8..902a9b99b 100644 --- a/modules/roles/manifests/static_mirror.pp +++ b/modules/roles/manifests/static_mirror.pp @@ -32,12 +32,14 @@ class roles::static_mirror { } $vhost_listen = $::hostname ? { - klecker => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80', - default => '*:80', + klecker => '130.89.148.14:80 [2001:610:1908:b000::148:14]:80', + mirror-isc => '149.20.20.20:80 [2001:4f8:8:36::1deb:20]:80', + default => '*:80', } $vhost_listen_443 = $::hostname ? { - klecker => '130.89.148.14:443 [2001:610:1908:b000::148:14]:443', - default => '*:443', + klecker => '130.89.148.14:443 [2001:610:1908:b000::148:14]:443', + mirror-isc => '149.20.20.20:443 [2001:4f8:8:36::1deb:20]:443', + default => '*:443', } apache2::config { 'local-static-vhost.conf': @@ -83,4 +85,7 @@ class roles::static_mirror { ssl::service { 'appstream.debian.org': notify => Service['apache2'], } + ssl::service { 'd-i.debian.org': + notify => Service['apache2'], + } }