From b3d535e122d9339b94d77317ef4d2fe997d9473f Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sat, 21 Dec 2024 19:25:06 +0100 Subject: [PATCH] attempt to fix index html --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index f1e725e..6977436 100644 --- a/nginx.conf +++ b/nginx.conf @@ -6,8 +6,8 @@ server { location / { root /usr/share/nginx/html; - index index.html; - try_files $uri $uri/ /index.html =404; + index lobby/index.html; + try_files $uri $uri/ /lobby/index.html =404; } error_page 404 /usr/share/nginx/html/404.html;