From 934c10544ca65e29050bbed8c3d8f65777fa83da 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 a392b5372..65fd95383 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; # vod settings vod_base_url ''; @@ -207,7 +207,7 @@ http { rtmp { server { - listen 1935; + listen [::]:1935; chunk_size 4096; allow publish 127.0.0.1; deny publish all;