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 <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2017-03-30 13:57:15 -04:00
parent 9108e18c5f
commit cfd39c843c

View File

@ -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/"
</VirtualHost>