fix(nginx): add ipv6 listen property to nginx service conf
- hotfix for issues #108 and #89 where standalone dockerimage does not provide velxio UI
This commit is contained in:
parent
c163b213e4
commit
81bd7885fa
|
|
@ -1,5 +1,6 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name localhost velxio.dev www.velxio.dev;
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
server_name velxio.dev www.velxio.dev;
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
|
|
|||
Loading…
Reference in New Issue