From 83f8218bf3e23fc74b7a4a37914838f5976d76f2 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 12 Apr 2024 10:50:13 +0200 Subject: [PATCH] :bug: Fix incorrect queryparams handling on default nginx entrypoint --- docker/devenv/files/nginx.conf | 2 +- docker/images/files/nginx.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/devenv/files/nginx.conf b/docker/devenv/files/nginx.conf index 5c1ae44db3..b9b595ff44 100644 --- a/docker/devenv/files/nginx.conf +++ b/docker/devenv/files/nginx.conf @@ -224,7 +224,7 @@ http { add_header Last-Modified $date_gmt; add_header Cache-Control "no-store, no-cache, max-age=0" always; if_modified_since off; - try_files $uri /index.html$is_args$args =404; + try_files $uri /index.html$is_args$args /index.html =404; } } } diff --git a/docker/images/files/nginx.conf b/docker/images/files/nginx.conf index bdf52f3894..4ad7c938ad 100644 --- a/docker/images/files/nginx.conf +++ b/docker/images/files/nginx.conf @@ -202,7 +202,7 @@ http { add_header Last-Modified $date_gmt; add_header Cache-Control "no-store, no-cache, max-age=0" always; if_modified_since off; - try_files $uri /index.html$is_args$args =404; + try_files $uri /index.html$is_args$args /index.html =404; } } }