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; } } }