aboutsummaryrefslogtreecommitdiffhomepage
path: root/config
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
parent110212fd79bb1bb220841c038c8d91d05612492e (diff)
downloadPeerTube-d322f854c05ff6ae1a66e3c80880025ce4bccbfa.tar.gz
PeerTube-d322f854c05ff6ae1a66e3c80880025ce4bccbfa.tar.zst
PeerTube-d322f854c05ff6ae1a66e3c80880025ce4bccbfa.zip
Prefer using null for rtmp listen setting
Diffstat (limited to 'config')
-rw-r--r--config/default.yaml10
-rw-r--r--config/production.yaml.example10
2 files changed, 12 insertions, 8 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
diff --git a/config/production.yaml.example b/config/production.yaml.example
index 11120e667..754b1b8a8 100644
--- a/config/production.yaml.example
+++ b/config/production.yaml.example
@@ -421,8 +421,9 @@ live:
421 enabled: true 421 enabled: true
422 422
423 # Listening hostname/port for RTMP server 423 # Listening hostname/port for RTMP server
424 # :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4 424 # '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
425 hostname: '::' 425 # Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
426 hostname: null
426 port: 1935 427 port: 1935
427 428
428 # Public hostname of your RTMP server 429 # Public hostname of your RTMP server
@@ -433,8 +434,9 @@ live:
433 enabled: false 434 enabled: false
434 435
435 # Listening hostname/port for RTMPS server 436 # Listening hostname/port for RTMPS server
436 # :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4 437 # '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
437 hostname: '::' 438 # Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
439 hostname: null
438 port: 1936 440 port: 1936
439 441
440 # Absolute paths 442 # Absolute paths