From f085833c90858ad34201cabfd00623182d4a28b1 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 6 Jan 2025 19:17:42 -0800 Subject: [PATCH] proxies / redirectmatch: revert trailing slash on redirectmatch, breaks codecs Signed-off-by: Kevin Fenzi --- roles/httpd/redirectmatch/templates/redirectmatch.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/httpd/redirectmatch/templates/redirectmatch.conf b/roles/httpd/redirectmatch/templates/redirectmatch.conf index d39e34a0d0..9becff73dd 100644 --- a/roles/httpd/redirectmatch/templates/redirectmatch.conf +++ b/roles/httpd/redirectmatch/templates/redirectmatch.conf @@ -1,3 +1,3 @@ {% if redirectmatch_enabled %} -RedirectMatch {{ status }} {{ regex }} {{ target }}/ +RedirectMatch {{ status }} {{ regex }} {{ target }} {% endif %}