diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-01-25 13:54:55 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-25 13:54:55 +0100 |
commit | 1906d5f73fd35244558595d166c07f0270546700 (patch) | |
tree | 1c44833db76f90f704ba702b8a9099a29bafa3ea /hosts/jenkins | |
parent | b894b6f84503a93c1d4d2e7d56cc9e2e590bed75 (diff) | |
download | jenkins.debian.net-1906d5f73fd35244558595d166c07f0270546700.tar.xz |
reproducible: fix redirect
Diffstat (limited to 'hosts/jenkins')
-rw-r--r-- | hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf b/hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf index 96a1f2ea..72c2d38a 100644 --- a/hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf +++ b/hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf @@ -278,7 +278,7 @@ Use common-debian-service-https-redirect reproducible-builds.org # note: the missing slash in the RewriteRule is wanted to avoid a double slash RewriteCond %{HTTP_HOST} reproducible\.debian\.net RewriteCond %{REQUEST_URI} ^/(testing|unstable|experimental)(/|)$ - RewriteRule ^/(.*) https://tests.reproducible-builds.org/$1index_suite_amd64_stats.html [R,L] + RewriteRule ^/(.*) https://tests.reproducible-builds.org/$1/index_suite_amd64_stats.html [R,L] # redirect (/testing|unstable|/experimental)/(amd64|armhf) to (/testing|/unstable|/experimental)/index_suite_(amd64|armhf)_stats.html RewriteCond %{HTTP_HOST} reproducible\.debian\.net @@ -450,7 +450,7 @@ Use common-debian-service-https-redirect reproducible-builds.org # note: the missing slash in the RewriteRule is wanted to avoid a double slash RewriteCond %{HTTP_HOST} tests\.reproducible-builds\.org RewriteCond %{REQUEST_URI} ^/(testing|unstable|experimental)(/|)$ - RewriteRule ^/(.*) /$1index_suite_amd64_stats.html [R,L] + RewriteRule ^/(.*) /$1/index_suite_amd64_stats.html [R,L] # redirect (/testing|unstable|/experimental)/(amd64|armhf) to (/testing|/unstable|/experimental)/index_suite_(amd64|armhf)_stats.html RewriteCond %{HTTP_HOST} tests\.reproducible-builds\.org |