]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/roles/templates/static-mirroring/vhost/lintian.debian.org.erb
appstream ssl
[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                 <% if @lsbmajdistrelease > '7' -%>
22                         Require all granted
23                 <% end -%>
24
25                 # These three lines makes apache serve
26                 # "lintian.log.gz" as a text/plain with encoding gzip
27                 # making it easier to view the log in the browser.
28                 RemoveType .gz
29                 AddEncoding x-gzip .gz
30                 AddType text/plain .log
31
32                 <IfModule mod_userdir.c>
33                         AddOutputFilterByType DEFLATE image/svg+xml
34                         AddOutputFilterByType DEFLATE text/plain
35                 </IfModule>
36         </Directory>
37
38         <Directory /srv/static.debian.org/mirrors/lintian.debian.org/cur/resources>
39                 # Cache these for a year (3600 * 24 * 365.25)
40                 # Files in here will change name if their content change
41                 Header set Cache-Control "max-age=31557600, public"
42         </Directory>
43
44         RewriteEngine on
45         RewriteMap source-map txt:/srv/static.debian.org/mirrors/lintian.debian.org/cur/lookup-tables/source-packages
46
47         # Re-direct from the "old" locations to the new ones
48         RewriteRule ^/reports/T(.*)\.html$ /tags/$1.html [L,R=permanent]
49         RewriteRule ^/reports/(.*)$ /$1 [L,R=permanent]
50
51         # Map source packages to reports (this mapping is re-written once per lintian run,
52         # serve it as a 302 rather than a permanent redirect)
53         # Version-less request
54         RewriteRule ^/source/([a-z0-9-]+)/?$ /${source-map:$1} [L,R,NE]
55         # Versioned request
56         RewriteRule ^/source/([a-z0-9-]+)/([a-zA-Z0-9.+:~-]+)$ /${source-map:$1/$2} [L,R,NE]
57 </VirtualHost>
58 # vim:set syn=apache: