From 54710a354f1ce62d904432444f5b387edfaff0e7 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Mon, 8 Dec 2025 16:46:33 -0500 Subject: [PATCH] nginx fixes --- web/vue-app/nginx.conf | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/web/vue-app/nginx.conf b/web/vue-app/nginx.conf index fafaab9..ccb8932 100644 --- a/web/vue-app/nginx.conf +++ b/web/vue-app/nginx.conf @@ -1,10 +1,12 @@ # nginx.conf -server { - listen 80; - server_name localhost; - root /usr/share/nginx/html; +http { + server { + listen 80; + server_name _; + root /usr/share/nginx/html; - location / { - try_files $uri $uri/ /index.html; - } + location / { + try_files $uri $uri/ /index.html; + } + } } \ No newline at end of file