diff options
Diffstat (limited to 'hosts/jenkins/etc/apache2/sites-available')
-rw-r--r-- | hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf | 5 |
1 files changed, 5 insertions, 0 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 8390ba55..a10f9989 100644 --- a/hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf +++ b/hosts/jenkins/etc/apache2/sites-available/jenkins.debian.net.conf @@ -297,6 +297,11 @@ Use common-debian-service-https-redirect reproducible-builds.org RewriteCond %{REQUEST_URI} ^/openwrt(/|)$ RewriteRule ^/(.*) /openwrt/openwrt.html [R,L] + # redirect /lede/ to lede/lede.html + # note: the missing slash in the RewriteRule is wanted to avoid a double slash + RewriteCond %{REQUEST_URI} ^/lede(/|)$ + RewriteRule ^/(.*) /lede/lede.html [R,L] + # redirect /netbsd/ to netbsd/netbsd.html # note: the missing slash in the RewriteRule is wanted to avoid a double slash RewriteCond %{REQUEST_URI} ^/netbsd(/|)$ |