cc462ba14f7a1f01fd85fdc0c08fe36132a398c5
[mirror/dsa-puppet.git] / modules / roles / templates / static-mirroring / vhost / lintian.debian.org.erb
1 Use common-dsa-vhost-https-redirect lintian.debian.org
2
3 <Virtualhost <%= vhost_listen_443 %> >
4         ServerName lintian.debian.org
5         ServerAdmin lintian-maint@debian.org
6
7         ErrorLog /var/log/apache2/lintian.debian.org-error.log
8         CustomLog /var/log/apache2/lintian.debian.org-access.log privacyssl
9
10         Use common-debian-service-ssl lintian.debian.org
11         Use common-ssl-HSTS
12
13         <IfModule mod_userdir.c>
14                 UserDir disabled
15         </IfModule>
16
17         DocumentRoot /srv/static.debian.org/mirrors/lintian.debian.org/cur
18         AddDefaultCharset utf-8
19
20         <Directory /srv/static.debian.org/mirrors/lintian.debian.org/cur>
21                 # These two lines makes apache serve "lintian.log.gz" as a text/plain with encoding gzip
22                 # making it easier to view the log in the browser.
23                 <% if @lsbmajdistrelease > '7' -%>
24                         Require all granted
25                 <% end -%>
26
27                 RemoveType .gz
28                 AddEncoding x-gzip .gz
29                 AddType text/plain .log
30
31                 <IfModule mod_userdir.c>
32                         AddOutputFilterByType DEFLATE image/svg+xml
33                         AddOutputFilterByType DEFLATE text/plain
34                 </IfModule>
35         </Directory>
36
37         <Directory /srv/static.debian.org/mirrors/lintian.debian.org/cur/graphs>
38                 # Cache graphs for an hour (Technically, a "expires" of "24h after last mod"
39                 # might be better, but oh well)
40                 Header set Cache-Control "max-age=3600, must-revalidate, public"
41         </Directory>
42
43         <Directory /srv/static.debian.org/mirrors/lintian.debian.org/cur/resources>
44                 # Cache these for a year (3600 * 24 * 365.25)
45                 # Files in here will change name if their content change
46                 Header set Cache-Control "max-age=31557600, public"
47         </Directory>
48
49         RewriteEngine on
50         RewriteMap source-map txt:/srv/static.debian.org/mirrors/lintian.debian.org/cur/lookup-tables/source-packages
51
52         # Re-direct from the "old" locations to the new ones
53         RewriteRule ^/reports/T(.*)\.html$ /tags/$1.html [L,R=permanent]
54         RewriteRule ^/reports/(.*)$ /$1 [L,R=permanent]
55
56         # Map source packages to reports (this mapping is re-written once per lintian run,
57         # serve it as a 302 rather than a permanent redirect)
58         # Version-less request
59         RewriteRule ^/source/([a-z0-9-]+)/?$ /${source-map:$1} [L,R,NE]
60         # Versioned request
61         RewriteRule ^/source/([a-z0-9-]+)/([a-zA-Z0-9.+:~-]+)$ /${source-map:$1/$2} [L,R,NE]
62 </VirtualHost>
63 # vim:set syn=apache: