From ed3282aff3c059f2ef47393c087b4c02a35b867b Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Fri, 24 Nov 2023 17:54:13 +0000 Subject: [PATCH] Fix instruction on subpath proxy The instruction is missing a trailing slash, causing 404 to be reported. --- doc/manual/src/configuration.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/manual/src/configuration.md b/doc/manual/src/configuration.md index 02210449f..00409a091 100644 --- a/doc/manual/src/configuration.md +++ b/doc/manual/src/configuration.md @@ -63,7 +63,7 @@ following: .. other configuration .. location /hydra/ { - proxy_pass http://127.0.0.1:3000; + proxy_pass http://127.0.0.1:3000/; proxy_redirect http://127.0.0.1:3000 https://example.com/hydra; proxy_set_header Host $host; @@ -74,6 +74,8 @@ following: } } +Note that the trailing slash at the end of proxy_pass is significant and must not be omitted! + Statsd Configuration --------------------