This commit is contained in:
2021-01-21 16:51:40 +01:00
parent aed0759eab
commit a0230690af

View File

@ -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;
}
}