]> git.donarmstrong.com Git - dak.git/blob - config/debian/apache.conf-incoming
apache.conf-incoming: Grant access to mahler.debian.net
[dak.git] / config / debian / apache.conf-incoming
1 <VirtualHost *:80>
2   ServerName incoming.debian.org
3   DocumentRoot /srv/incoming.debian.org/public
4
5   # deny by default
6   <Directory />
7     Order allow,deny
8   </Directory>
9
10   # incoming dir, no subdir.  allow everyone except abusers.
11   <Directory /srv/incoming.debian.org/public>
12     IndexIgnore robots.txt
13     Order deny,allow
14   </Directory>
15
16   <Directory /srv/incoming.debian.org>
17     <Files robots.txt>
18       Order deny,allow
19     </Files>
20   </Directory>
21   Alias /robots.txt /srv/incoming.debian.org/robots.txt
22
23   # buildd direct access -- buildds only
24   Alias /debian /srv/ftp.debian.org/mirror
25   Alias /debian-backports /srv/backports-master.debian.org/mirror
26   Alias /debian-buildd /srv/incoming.debian.org/debian-buildd
27
28   <DirectoryMatch ~ "^/srv/(incoming\.debian\.org/(builddweb|debian-buildd/)|ftp\.debian\.org/mirror|backports-master\.debian\.org/mirror)">
29     Order allow,deny
30
31     Use DebianBuilddHostList
32
33     # buildd.d.o, cimarosa
34     allow from 206.12.19.8
35
36     # franck.d.o
37     allow from 138.16.160.12
38
39     # test access to check functionality, ganneff
40     allow from 213.146.108.162
41
42     # for testing sbuild-db; rleigh@codelibre.net
43     # nagini.codelibre.net
44     allow from 80.68.93.164
45     allow from 2001:41c8:1:5750::2
46
47     # Should be in DSA list
48     # amd64
49     # vitry (archive rebuild)
50     allow from 194.177.211.206
51     allow from 2001:648:2ffc:deb:214:22ff:feb2:122c
52     # krenek (archive rebuild)
53     allow from 194.177.211.207
54     allow from 2001:648:2ffc:deb:214:22ff:feb1:ff56
55
56     # Known Extras
57
58     # No idea about
59     # arm
60     ## netwinder
61     allow from 192.133.104.24
62     ##
63     allow from 217.147.81.26
64     ## toffee
65     allow from 78.32.9.218
66     ##
67     allow from 86.3.74.169
68     ## nw1.xandros
69     allow from 67.210.160.89
70     ## nw2.xandros
71     allow from 67.210.160.90
72     ## hdges.billgatliff
73     allow from 209.251.101.204
74
75     # armel
76     ## allegri
77     allow from 157.193.39.233
78
79     # hppa
80     ## bld3.mmjgroup
81     allow from 192.25.206.243
82     ## paer
83     allow from 192.25.206.11
84
85     # hurd-i386
86     ## rossini (NOT .debian.org)
87     allow from 192.33.98.55
88     ## back / mozart (xen domains; NOT .debian.org)
89     allow from 80.87.129.151
90     # ironforge.sceen.net.
91     allow from 46.105.42.111
92     # mahler.debian.net
93     allow from 178.78.231.178
94
95     # ia64
96     ## mundi
97     allow from 192.25.206.62
98
99     # mips
100     ##
101     allow from 217.147.81.21
102     ## sigrun, aba
103     allow from 82.195.75.68
104     allow from 2001:41b8:202:deb:a00:69ff:fe08:30c6
105
106     # mipsel
107     ## monteverdi
108     allow from 78.47.2.111
109     ## kritias, aba
110     allow from 78.46.213.163
111
112     # s390
113     ## debian01.zseries
114     allow from 195.243.109.161
115     ## l003092.zseriespenguins.ihost.com
116     allow from 32.97.40.46
117     ##
118     allow from 148.100.96.45
119     ##
120     allow from 148.100.96.52
121     ## lxdebian.bfinv
122     allow from 80.245.147.60
123
124     # sparc
125     ## titan.ayous.org ('non-standard' buildd; contact HE)
126     allow from 82.195.75.33
127
128     # kfreebsd
129     ## i386
130     # himalai1, ganymede1
131     allow from 129.175.22.65
132     ## luchesi
133     ## Password based due to being KVM instance
134     ##   allow from 137.82.84.78
135
136     # Dynamics use password auth
137
138     AuthType Basic
139     AuthName "incoming.debian.org"
140     AuthUserFile /srv/incoming.debian.org/htpasswd
141     require valid-user
142     satisfy any
143   </DirectoryMatch>
144
145   CustomLog               /var/log/apache2/incoming-access.log privacy
146   ErrorLog                /var/log/apache2/incoming-error.log
147
148 </VirtualHost>