This commit is contained in:
2021-06-17 13:51:55 +02:00
commit 976bc36baa
43 changed files with 1026 additions and 0 deletions

9
default.conf Normal file
View File

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