3 Commits
0.0.2 ... 0.0.3

Author SHA1 Message Date
cbc7b52f96 change address of service 2021-01-24 16:43:39 +01:00
a0230690af fix 2021-01-21 16:51:40 +01:00
aed0759eab nginx config 2021-01-21 16:47:03 +01:00
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,4 @@
FROM nginx:stable
COPY default.conf /etc/nginx/conf.d/
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;
}
}

View File

@ -1 +1 @@
export const serviceBaseUrl = "http://172.16.3.32:5000";
export const serviceBaseUrl = "http://172.16.10.29:5000";