Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
a0230690af
|
|||
aed0759eab
|
@ -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
9
default.conf
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name hv-ui;
|
||||||
|
location / {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user