From 0dea991f21104c0eb123554bcb619d21c1ee2b58 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 5 Aug 2020 17:13:28 -0700 Subject: [PATCH] proxies: Try and correct the bugz url to show Fedora EPEL right Seems if you use a %20 for a space in the Redirect url it will just pass that on and not urldecode it. So, try and just \ the space and see if that works better. Signed-off-by: Kevin Fenzi --- roles/packages3/bugz.fp.o/files/bugz.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/packages3/bugz.fp.o/files/bugz.conf b/roles/packages3/bugz.fp.o/files/bugz.conf index b01b72f5da..0f6494e941 100644 --- a/roles/packages3/bugz.fp.o/files/bugz.conf +++ b/roles/packages3/bugz.fp.o/files/bugz.conf @@ -1,5 +1,5 @@ RewriteEngine On RewriteMap lowercase int:tolower -RewriteRule ^/(.+) https://bugzilla.redhat.com/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=ON_QA&classification=Fedora&product=Fedora&product=Fedora%20EPEL&component=$1 [R,L] +RewriteRule ^/(.+) https://bugzilla.redhat.com/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=ON_QA&classification=Fedora&product=Fedora&product=Fedora\ EPEL&component=$1 [R,L] RewriteRule ^/$ https://bugzilla.redhat.com/ [R,L]