]> git.donarmstrong.com Git - dak.git/blob - config/debian/apache.conf-incoming
incoming log has tag privacy (update with live version from franck)
[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
93     # ia64
94     ## mundi
95     allow from 192.25.206.62
96
97     # mips
98     ##
99     allow from 217.147.81.21
100     ## sigrun, aba
101     allow from 82.195.75.68
102     allow from 2001:41b8:202:deb:a00:69ff:fe08:30c6
103
104     # mipsel
105     ## monteverdi
106     allow from 78.47.2.111
107     ## kritias, aba
108     allow from 78.46.213.163
109
110     # s390
111     ## debian01.zseries
112     allow from 195.243.109.161
113     ## l003092.zseriespenguins.ihost.com
114     allow from 32.97.40.46
115     ##
116     allow from 148.100.96.45
117     ##
118     allow from 148.100.96.52
119     ## lxdebian.bfinv
120     allow from 80.245.147.60
121
122     # sparc
123     ## titan.ayous.org ('non-standard' buildd; contact HE)
124     allow from 82.195.75.33
125
126     # kfreebsd
127     ## i386
128     # himalai1, ganymede1
129     allow from 129.175.22.65
130     ## luchesi
131     ## Password based due to being KVM instance
132     ##   allow from 137.82.84.78
133
134     # Dynamics use password auth
135
136     AuthType Basic
137     AuthName "incoming.debian.org"
138     AuthUserFile /srv/incoming.debian.org/htpasswd
139     require valid-user
140     satisfy any
141   </DirectoryMatch>
142
143   CustomLog               /var/log/apache2/incoming-access.log privacy
144   ErrorLog                /var/log/apache2/incoming-error.log
145
146 </VirtualHost>