aboutsummaryrefslogtreecommitdiffhomepage
path: root/config/default.yaml
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-04 16:12:49 +0200
committerChocobozzz <me@florianbigard.com>2022-05-04 16:12:49 +0200
commitd322f854c05ff6ae1a66e3c80880025ce4bccbfa (patch)
treea3222e93913565e87a9c3ae59f426938646ba542 /config/default.yaml
parent110212fd79bb1bb220841c038c8d91d05612492e (diff)
downloadPeerTube-d322f854c05ff6ae1a66e3c80880025ce4bccbfa.tar.gz
PeerTube-d322f854c05ff6ae1a66e3c80880025ce4bccbfa.tar.zst
PeerTube-d322f854c05ff6ae1a66e3c80880025ce4bccbfa.zip
Prefer using null for rtmp listen setting
Diffstat (limited to 'config/default.yaml')
-rw-r--r--config/default.yaml10
1 files changed, 6 insertions, 4 deletions
diff --git a/config/default.yaml b/config/default.yaml
index 79afb121b..a27ffba02 100644
--- a/config/default.yaml
+++ b/config/default.yaml
@@ -413,8 +413,9 @@ live:
413 enabled: true 413 enabled: true
414 414
415 # Listening hostname/port for RTMP server 415 # Listening hostname/port for RTMP server
416 # :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4 416 # '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
417 hostname: '::' 417 # Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
418 hostname: null
418 port: 1935 419 port: 1935
419 420
420 # Public hostname of your RTMP server 421 # Public hostname of your RTMP server
@@ -425,8 +426,9 @@ live:
425 enabled: false 426 enabled: false
426 427
427 # Listening hostname/port for RTMPS server 428 # Listening hostname/port for RTMPS server
428 # :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4 429 # '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
429 hostname: '::' 430 # Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
431 hostname: null
430 port: 1936 432 port: 1936
431 433
432 # Absolute paths 434 # Absolute paths