2 Commits

Author SHA1 Message Date
a0230690af fix 2021-01-21 16:51:40 +01:00
aed0759eab nginx config 2021-01-21 16:47:03 +01:00
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,4 @@
FROM nginx:stable FROM nginx:stable
COPY default.conf /etc/nginx/conf.d/
COPY dist/hv-ui/* /usr/share/nginx/html/ COPY dist/hv-ui/* /usr/share/nginx/html/

9
default.conf Normal file
View File

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