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:
Richard Almanza 2026-05-01 18:47:07 -05:00
parent c163b213e4
commit 81bd7885fa
2 changed files with 2 additions and 0 deletions

View File

@ -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;

View File

@ -1,5 +1,6 @@
server {
listen 80;
listen [::]:80;
server_name velxio.dev www.velxio.dev;
root /usr/share/nginx/html;
index index.html;