diff --git a/docker/fu-hsi-nginx/docs/conf.d/http.conf b/docker/fu-hsi-nginx/docs/conf.d/http.conf index 7542a08..2ffb7d8 100644 --- a/docker/fu-hsi-nginx/docs/conf.d/http.conf +++ b/docker/fu-hsi-nginx/docs/conf.d/http.conf @@ -9,6 +9,7 @@ server { location / { root /usr/share/nginx/html/dist; index index.html index.htm; + try_files $uri $uri/ /index.html; # add_header Cache-Control no-store; } diff --git a/docker/fu-hsi-nginx/docs/conf.d/https.conf b/docker/fu-hsi-nginx/docs/conf.d/https.conf index c12e172..ae7c549 100644 --- a/docker/fu-hsi-nginx/docs/conf.d/https.conf +++ b/docker/fu-hsi-nginx/docs/conf.d/https.conf @@ -25,6 +25,7 @@ server { location / { root /usr/share/nginx/html/dist; index index.html index.htm; + try_files $uri $uri/ /index.html; # add_header Cache-Control no-store; }