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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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 {