From 21df66d6225b5b7ab8655d3c69f7656351bfe54c Mon Sep 17 00:00:00 2001 From: RodrigoBalest Date: Mon, 7 Aug 2017 08:44:21 -0300 Subject: [PATCH] Amend proxy instructions for Apache Hi. I had issues regarding to resources when accessing Verdaccio through Apache proxy. I found out that removing ending slashes at `ProxyPass` and `ProxyPassReverse` settings solved it. I also set Verdaccio's config `url_prefix` to match the proxy location. Hope it helps. --- wiki/reverse-proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/reverse-proxy.md b/wiki/reverse-proxy.md index 173a2d03e..eddddec57 100644 --- a/wiki/reverse-proxy.md +++ b/wiki/reverse-proxy.md @@ -34,8 +34,8 @@ Apache virtual server configuration ProxyRequests Off ProxyPreserveHost On AllowEncodedSlashes NoDecode - ProxyPass / http://127.0.0.1:4873/ nocanon - ProxyPassReverse / http://127.0.0.1:4873/ + ProxyPass / http://127.0.0.1:4873 nocanon + ProxyPassReverse / http://127.0.0.1:4873 ````