From 81bd7885fa7783ee9611a9e89f6e2d5caeadb265 Mon Sep 17 00:00:00 2001 From: Richard Almanza Date: Fri, 1 May 2026 18:47:07 -0500 Subject: [PATCH] fix(nginx): add ipv6 listen property to nginx service conf - hotfix for issues #108 and #89 where standalone dockerimage does not provide velxio UI --- deploy/nginx.conf | 1 + deploy/nginx.prod.conf | 1 + 2 files changed, 2 insertions(+) diff --git a/deploy/nginx.conf b/deploy/nginx.conf index 252c7cd4..0be2bef0 100644 --- a/deploy/nginx.conf +++ b/deploy/nginx.conf @@ -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; diff --git a/deploy/nginx.prod.conf b/deploy/nginx.prod.conf index 2c96cc11..e877090d 100644 --- a/deploy/nginx.prod.conf +++ b/deploy/nginx.prod.conf @@ -1,5 +1,6 @@ server { listen 80; + listen [::]:80; server_name velxio.dev www.velxio.dev; root /usr/share/nginx/html; index index.html;