From cfd39c843c2aa57ebd621477563d2dcdec50ca04 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Thu, 30 Mar 2017 13:57:15 -0400 Subject: [PATCH] Fix trailing slash on ProxyPass / ProxyPassReverse Trivial fix to correct URL handling when browsing RDO's html pages. Change-Id: I991c1c894d1a0953f35244514c4d13e8747f4b1d Signed-off-by: Paul Belanger --- modules/openstack_project/templates/mirror.vhost.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openstack_project/templates/mirror.vhost.erb b/modules/openstack_project/templates/mirror.vhost.erb index 625ffca9ed..44f9e1d71d 100644 --- a/modules/openstack_project/templates/mirror.vhost.erb +++ b/modules/openstack_project/templates/mirror.vhost.erb @@ -122,6 +122,6 @@ NameVirtualHost <%= @vhost_name %>:8080 # Per site caching reverse proxy rules # Only cache specific backends, rely on afs cache otherwise. CacheEnable disk "/rdo" - ProxyPass "/rdo" "https://trunk.rdoproject.org/" - ProxyPassReverse "/rdo" "https://trunk.rdoproject.org/" + ProxyPass "/rdo/" "https://trunk.rdoproject.org/" + ProxyPassReverse "/rdo/" "https://trunk.rdoproject.org/"