From cd8e650b443e3dd41762a74bfe41599d37fb39c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= Date: Tue, 19 Jul 2022 11:18:42 -0400 Subject: [PATCH] docker: Enable IPv6 support in nginx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber --- docker/rootfs/usr/local/nginx/conf/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/rootfs/usr/local/nginx/conf/nginx.conf b/docker/rootfs/usr/local/nginx/conf/nginx.conf index 7437f42fd..faf31ac1e 100644 --- a/docker/rootfs/usr/local/nginx/conf/nginx.conf +++ b/docker/rootfs/usr/local/nginx/conf/nginx.conf @@ -45,7 +45,7 @@ http { } server { - listen 5000; + listen [::]:5000 ipv6only=off; # vod settings vod_base_url ''; @@ -223,7 +223,7 @@ http { rtmp { server { - listen 1935; + listen [::]:1935 ipv6only=off; chunk_size 4096; allow publish 127.0.0.1; deny publish all;