From f66ca69c150df8629eb7049bf500898d88d809f1 Mon Sep 17 00:00:00 2001
From: Lars Hampe <hello@hashdot.co>
Date: Thu, 3 Oct 2024 21:47:07 +0200
Subject: [PATCH] ci(app): update nginx.conf

---
 ci/docker/app/nginx.conf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ci/docker/app/nginx.conf b/ci/docker/app/nginx.conf
index 7eb11e5..9d7d0cc 100644
--- a/ci/docker/app/nginx.conf
+++ b/ci/docker/app/nginx.conf
@@ -25,7 +25,8 @@ http {
     }
 
     location / {
-            try_files $uri $uri/index.html =404;
+            root   /usr/share/nginx/html;
+            try_files $uri $uri/ /index.html;
     }
   }
 }
\ No newline at end of file