docker: modify listen directive in nginx.conf to listen on both IPv4&v6 (#10653)

This commit is contained in:
Michal Vašíček 2024-04-11 13:41:29 +02:00 committed by GitHub
parent 5970aead0d
commit 4a7a47a931
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@ http {
} }
server { server {
listen 5000; listen [::]:5000 ipv6only=off;
# vod settings # vod settings
vod_base_url ''; vod_base_url '';