docker: Enable IPv6 support in nginx

Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
Stéphane Graber 2022-07-19 11:18:42 -04:00
parent e68f80b44a
commit 934c10544c
No known key found for this signature in database
GPG Key ID: C638974D64792D67

View File

@ -45,7 +45,7 @@ http {
} }
server { server {
listen 5000; listen [::]:5000;
# vod settings # vod settings
vod_base_url ''; vod_base_url '';
@ -207,7 +207,7 @@ http {
rtmp { rtmp {
server { server {
listen 1935; listen [::]:1935;
chunk_size 4096; chunk_size 4096;
allow publish 127.0.0.1; allow publish 127.0.0.1;
deny publish all; deny publish all;