From a0230690afec4cc4e09f7e14acc3a85f6d69bf80 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Thu, 21 Jan 2021 16:51:40 +0100 Subject: [PATCH] fix --- default.conf | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/default.conf b/default.conf index 482f930..69ed389 100644 --- a/default.conf +++ b/default.conf @@ -1,10 +1,9 @@ server { - listen 80; - server_name hv-ui; - - location / { - location /usr/share/nginx/html; - try_files $uri $uri/ /index.html; - } + listen 80; + server_name hv-ui; + location / { + root /usr/share/nginx/html; + try_files $uri $uri/ /index.html; + } }