From d760364f635e6dadfae32b6a90daf69dd703449b Mon Sep 17 00:00:00 2001 From: Stein Helge Riise Date: Mon, 17 Nov 2025 11:15:09 +0000 Subject: [PATCH] Add frontend/minattest-app/nginx.conf --- frontend/minattest-app/nginx.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 frontend/minattest-app/nginx.conf diff --git a/frontend/minattest-app/nginx.conf b/frontend/minattest-app/nginx.conf new file mode 100644 index 0000000..9ba98f1 --- /dev/null +++ b/frontend/minattest-app/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name _; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri /index.html; + } +}