Update nginx.conf (#687)

Changed undefined variable original_uri to request_uri which should use the original request uri. (nginx container won't start otherwise)

Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
nielscodes
2025-02-01 22:48:53 +01:00
committed by GitHub
parent bb34cd98e5
commit 3acf046975

View File

@@ -1,6 +1,6 @@
map $original_uri $api_uri {
map $request_uri $api_uri {
~^/api(/.*$) $1;
default $original_uri;
default $request_uri;
}
server {