feat(playout): allow harbor ssl configuration
This commit is contained in:
parent
8764feded9
commit
b2fc3a5ecf
17 changed files with 248 additions and 13 deletions
|
@ -190,6 +190,11 @@ class Application_Model_StreamSetting
|
|||
return Config::get('stream.inputs.main.mount') ?? 'main';
|
||||
}
|
||||
|
||||
public static function getMasterLiveStreamSecure()
|
||||
{
|
||||
return Config::get('stream.inputs.main.secure') ?? false;
|
||||
}
|
||||
|
||||
public static function getDjLiveStreamPort()
|
||||
{
|
||||
return Config::get('stream.inputs.show.port') ?? 8002;
|
||||
|
@ -200,6 +205,11 @@ class Application_Model_StreamSetting
|
|||
return Config::get('stream.inputs.show.mount') ?? 'show';
|
||||
}
|
||||
|
||||
public static function getDjLiveStreamSecure()
|
||||
{
|
||||
return Config::get('stream.inputs.show.secure') ?? false;
|
||||
}
|
||||
|
||||
public static function getAdminUser($stream)
|
||||
{
|
||||
return self::getStreamDataNormalized($stream)['admin_user'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue