Skip to content

Commit

Permalink
Fix instruction on subpath proxy
Browse files Browse the repository at this point in the history
The instruction is missing a trailing slash, causing 404 to be reported.
  • Loading branch information
nbdd0121 authored Nov 24, 2023
1 parent 8f48e4d commit ed3282a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doc/manual/src/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
--------------------

Expand Down

0 comments on commit ed3282a

Please sign in to comment.