ministream/ministream.toml

22 lines
528 B
TOML
Raw Normal View History

2023-12-04 23:45:43 +00:00
# SiteName is used for displaying title of site on frontend.
# Default: "ministream"
# Env: MINISTREAM_SITENAME
SiteName = "stream.example.org"
2023-12-05 00:15:09 +00:00
[HTTP]
2023-12-04 23:45:43 +00:00
# HTTPListenAddr is which port the HTTP server will listen on.
# Default: ":8080"
2023-12-05 00:15:09 +00:00
# Env: MINISTREAM_HTTP_LISTENADDR
2023-12-05 00:25:17 +00:00
ListenAddr = ":8080"
[WebRTC]
# UDPMin is the minimum used for ephemeral ports.
# Default: 50000
# Env: MINISTREAM_WEBRTC_UDPMIN
UDPMin = 50000
# UDPMax is the maximum used for ephemeral ports.
# Default: 50050
# Env: MINISTREAM_WEBRTC_UDPMAX
UDPMAX = 50050