From 893fcdaf25c33027d82de29799f8487faa1fb500 Mon Sep 17 00:00:00 2001 From: "marcel.kocisek" Date: Tue, 24 Sep 2024 15:29:52 +0200 Subject: [PATCH] Add index html before handling localhost:80 --- web-app/nginx.proxy.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-app/nginx.proxy.conf b/web-app/nginx.proxy.conf index f783028e..43c9beef 100644 --- a/web-app/nginx.proxy.conf +++ b/web-app/nginx.proxy.conf @@ -10,6 +10,6 @@ server { location ~ ^/admin($|/) { root /usr/share/nginx/html; - try_files $uri $uri/ /admin/index.html; + try_files $uri $uri/index.html $uri/ /admin/index.html; } }