diff options
author | Chocobozzz <me@florianbigard.com> | 2022-05-02 14:32:12 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-05-02 14:32:12 +0200 |
commit | cfbe6be516808de4b45ca9d98f912999ef8daaab (patch) | |
tree | f458df7621833582ccd350a00c5c0404fe782a88 /config/default.yaml | |
parent | 42efd780a2db0925b6befd308bd8fc6590117546 (diff) | |
download | PeerTube-cfbe6be516808de4b45ca9d98f912999ef8daaab.tar.gz PeerTube-cfbe6be516808de4b45ca9d98f912999ef8daaab.tar.zst PeerTube-cfbe6be516808de4b45ca9d98f912999ef8daaab.zip |
Add ability to provide rtmp listening hostname
Diffstat (limited to 'config/default.yaml')
-rw-r--r-- | config/default.yaml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/config/default.yaml b/config/default.yaml index 017b63e49..7af9c929f 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -411,17 +411,27 @@ live: | |||
411 | # Your firewall should accept traffic from this port in TCP if you enable live | 411 | # Your firewall should accept traffic from this port in TCP if you enable live |
412 | rtmp: | 412 | rtmp: |
413 | enabled: true | 413 | enabled: true |
414 | port: 1935 | 414 | |
415 | hostname: 'localhost' | 415 | hostname: 'localhost' |
416 | port: 1935 | ||
417 | |||
418 | # Public endpoint of your RTMP server | ||
419 | # Use null to use the same value than `webserver.hostname` | ||
420 | public_hostname: null | ||
416 | 421 | ||
417 | rtmps: | 422 | rtmps: |
418 | enabled: false | 423 | enabled: false |
424 | |||
425 | hostname: 'localhost' | ||
419 | port: 1936 | 426 | port: 1936 |
420 | # Absolute path | 427 | |
428 | # Absolute paths | ||
421 | key_file: '' | 429 | key_file: '' |
422 | # Absolute path | ||
423 | cert_file: '' | 430 | cert_file: '' |
424 | hostname: 'localhost' | 431 | |
432 | # Public endpoint of your RTMPS server | ||
433 | # Use null to use the same value than `webserver.hostname` | ||
434 | public_hostname: null | ||
425 | 435 | ||
426 | # Allow to transcode the live streaming in multiple live resolutions | 436 | # Allow to transcode the live streaming in multiple live resolutions |
427 | transcoding: | 437 | transcoding: |