aboutsummaryrefslogtreecommitdiffhomepage
path: root/config/default.yaml
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-05-04 09:10:25 +0200
committerChocobozzz <me@florianbigard.com>2022-05-04 09:10:25 +0200
commit9c5e58226933e1a1b03d08944df5572f21638619 (patch)
tree7db86dd469821d6f5723140c26db48af807d168f /config/default.yaml
parent6348fb18840c912e107cfbc0f51d1c440b9c1cba (diff)
downloadPeerTube-9c5e58226933e1a1b03d08944df5572f21638619.tar.gz
PeerTube-9c5e58226933e1a1b03d08944df5572f21638619.tar.zst
PeerTube-9c5e58226933e1a1b03d08944df5572f21638619.zip
Better config comments for RTMP/RTMPS
Diffstat (limited to 'config/default.yaml')
-rw-r--r--config/default.yaml6
1 files changed, 4 insertions, 2 deletions
diff --git a/config/default.yaml b/config/default.yaml
index 7af9c929f..2b4a7cbc2 100644
--- a/config/default.yaml
+++ b/config/default.yaml
@@ -412,16 +412,18 @@ live:
412 rtmp: 412 rtmp:
413 enabled: true 413 enabled: true
414 414
415 # Listening hostname/port for RTMP server
415 hostname: 'localhost' 416 hostname: 'localhost'
416 port: 1935 417 port: 1935
417 418
418 # Public endpoint of your RTMP server 419 # Public hostname of your RTMP server
419 # Use null to use the same value than `webserver.hostname` 420 # Use null to use the same value than `webserver.hostname`
420 public_hostname: null 421 public_hostname: null
421 422
422 rtmps: 423 rtmps:
423 enabled: false 424 enabled: false
424 425
426 # Listening hostname/port for RTMPS server
425 hostname: 'localhost' 427 hostname: 'localhost'
426 port: 1936 428 port: 1936
427 429
@@ -429,7 +431,7 @@ live:
429 key_file: '' 431 key_file: ''
430 cert_file: '' 432 cert_file: ''
431 433
432 # Public endpoint of your RTMPS server 434 # Public hostname of your RTMPS server
433 # Use null to use the same value than `webserver.hostname` 435 # Use null to use the same value than `webserver.hostname`
434 public_hostname: null 436 public_hostname: null
435 437