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