From beb522c03ebacf26423e77ad16815999828d2b2b Mon Sep 17 00:00:00 2001 From: Andrew Rowson Date: Thu, 24 Dec 2020 12:15:34 +0000 Subject: [PATCH] NGINX should listen on IPv6 as well --- docker/nginx.tmpl | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/nginx.tmpl b/docker/nginx.tmpl index 05a5541..1f1ed8e 100644 --- a/docker/nginx.tmpl +++ b/docker/nginx.tmpl @@ -8,6 +8,7 @@ http { } server { listen ${LISTEN_PORT}; + listen [::]:${LISTEN_PORT}; root /usr/share/nginx/html; location /api { proxy_pass http://otrecorder/api/;