1 class roles::snapshot_web {
3 include apache2::rewrite
6 # 61.69.254.110 - 20180705, mirroring with wget
7 @ferm::rule { 'dsa-snapshot-abusers':
9 rule => "saddr (61.69.254.110) DROP",
13 "libapache2-mod-wsgi",
15 ensure => 'installed',
18 apache2::site { '020-snapshot.debian.org':
19 site => 'snapshot.debian.org',
20 content => template('roles/snapshot/snapshot.debian.org.conf.erb')
25 $ipv4addr = '185.17.185.185'
26 $ipv6addr = '2001:1af8:4020:b030:deb::185'
27 $ipv6addr_apache = '2001:1af8:4020:b030:deb::187'
30 $ipv4addr = '193.62.202.27'
31 $ipv6addr = '2001:630:206:4000:1a1a:0:c13e:ca1b'
32 $ipv6addr_apache = '2001:630:206:4000:1a1a:0:c13e:ca1a'
35 fail ( "unknown host $::hostname for snapshot_web." )
41 @ferm::rule { 'dsa-nat-snapshot-varnish-v4':
43 chain => 'PREROUTING',
44 rule => "proto tcp daddr ${ipv4addr} dport 80 REDIRECT to-ports 6081",
47 varnish::config { 'default':
52 backend => 'file,/var/lib/varnish/varnish_storage.bin,8G',
53 content => template('roles/snapshot/snapshot.debian.org.vcl.erb'),
56 # the ipv6 port 80 is owned by varnish
57 file { '/etc/apache2/ports.conf':
60 Listen [$ipv6addr_apache]:80
62 require => Package['apache2'],
63 notify => Service['apache2'],
66 # haproxy ssl termination
67 #########################
69 file { '/etc/haproxy/haproxy.cfg':
70 content => template('roles/snapshot/haproxy.cfg.erb'),
71 require => Package['haproxy'],
72 notify => Service['haproxy'],
74 ssl::service { 'snapshot.debian.org':
75 notify => Service['haproxy'],