From 3acf046975daa76347e0025ee7e5c32db1086c9c Mon Sep 17 00:00:00 2001 From: nielscodes Date: Sat, 1 Feb 2025 22:48:53 +0100 Subject: [PATCH] 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 --- docker/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/nginx.conf b/docker/nginx.conf index 32e3207b..f5dcc7d6 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -1,6 +1,6 @@ -map $original_uri $api_uri { +map $request_uri $api_uri { ~^/api(/.*$) $1; - default $original_uri; + default $request_uri; } server {