Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Framasoft
PeerTube
PeerTube
Commits
d322f854
Verified
Commit
d322f854
authored
May 04, 2022
by
Chocobozzz
Browse files
Prefer using null for rtmp listen setting
parent
110212fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
config/default.yaml
View file @
d322f854
...
...
@@ -413,8 +413,9 @@ live:
enabled
:
true
# Listening hostname/port for RTMP server
# :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4
hostname
:
'
::'
# '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
# Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
hostname
:
null
port
:
1935
# Public hostname of your RTMP server
...
...
@@ -425,8 +426,9 @@ live:
enabled
:
false
# Listening hostname/port for RTMPS server
# :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4
hostname
:
'
::'
# '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
# Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
hostname
:
null
port
:
1936
# Absolute paths
...
...
config/production.yaml.example
View file @
d322f854
...
...
@@ -421,8 +421,9 @@ live:
enabled: true
# Listening hostname/port for RTMP server
# :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4
hostname: '::'
# '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
# Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
hostname: null
port: 1935
# Public hostname of your RTMP server
...
...
@@ -433,8 +434,9 @@ live:
enabled: false
# Listening hostname/port for RTMPS server
# :: to listen on IPv6 and IPv4, 0.0.0.0 to listen on IPv4
hostname: '::'
# '::' to listen on IPv6 and IPv4, '0.0.0.0' to listen on IPv4
# Use null to automatically listen on '::' if IPv6 is available, or '0.0.0.0' otherwise
hostname: null
port: 1936
# Absolute paths
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment