From 6020f4503add335a709a4a702006b8b801debb36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20M=C3=A4der?= Date: Wed, 23 Nov 2022 14:40:03 +0100 Subject: [PATCH] Make nginx-unit listen on IPv4 and IPv6 --- docker/nginx-unit.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/nginx-unit.json b/docker/nginx-unit.json index 87a186b..d6ff9cc 100644 --- a/docker/nginx-unit.json +++ b/docker/nginx-unit.json @@ -1,6 +1,9 @@ { "listeners": { - "*:8080": { + "0.0.0.0:8080": { + "pass": "routes" + }, + "[::]:8080": { "pass": "routes" } },