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