mirror of
https://github.com/owncast/owncast.git
synced 2025-11-01 10:55:57 +08:00
Add custom RTMP port number support (#462)
* Bump api spec version * Add support for custom RTMP port. Closes #454
This commit is contained in:
@ -66,7 +66,8 @@ func Start() error {
|
||||
go rtmp.Start(setStreamAsConnected, setBroadcaster)
|
||||
|
||||
port := config.Config.GetPublicWebServerPort()
|
||||
log.Infof("Web server is listening on port %d, RTMP is accepting inbound streams on port 1935.", port)
|
||||
rtmpPort := config.Config.GetRTMPServerPort()
|
||||
log.Infof("Web server is listening on port %d, RTMP is accepting inbound streams on port %d.", port, rtmpPort)
|
||||
log.Infoln("The web admin interface is available at /admin.")
|
||||
|
||||
return nil
|
||||
|
||||
Reference in New Issue
Block a user