diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-06 19:56:34 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-06 19:56:34 +0200 |
commit | bcfbd0a91752ee7e63299a23e5d0840c25f6d08d (patch) | |
tree | 485e72f9b99a924605544fcbc8a3608384b27e82 /etc | |
parent | f0a18cab05da1130bf9ac1f634b10cf881fd192a (diff) | |
download | jenkins.debian.net-bcfbd0a91752ee7e63299a23e5d0840c25f6d08d.tar.xz |
reproducible coreboot: improve main page and link to it from rb.d.n
Diffstat (limited to 'etc')
-rw-r--r-- | etc/apache2/sites-available/jenkins.debian.net | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/apache2/sites-available/jenkins.debian.net b/etc/apache2/sites-available/jenkins.debian.net index 91c93fe1..e052b1e5 100644 --- a/etc/apache2/sites-available/jenkins.debian.net +++ b/etc/apache2/sites-available/jenkins.debian.net @@ -246,6 +246,12 @@ Use common-debian-service-https-redirect reproducible.debian.net RewriteCond %{REQUEST_URI} ^/(testing|unstable|experimental)/$ RewriteRule ^/(.*) /$1index_suite_stats.html [R,L] + # redirect /coreboot/ to coreboot/coreboot.html + # note: the missing slash in the RewriteRule is wanted to avoid a double slash + RewriteCond %{HTTP_HOST} reproducible\.debian\.net + RewriteCond %{REQUEST_URI} ^/coreboot/$ + RewriteRule ^/(.*) /coreboot/coreboot.html_ [R,L] + <Proxy *> Require all granted </Proxy> |