nginx config

This commit is contained in:
2021-01-21 16:47:03 +01:00
parent ceb228e472
commit aed0759eab
2 changed files with 11 additions and 0 deletions

10
default.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80;
server_name hv-ui;
location / {
location /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
}