SAAS-876 - use baseurl for default host value

This commit is contained in:
Duncan Sommerville 2015-07-13 15:52:04 -04:00
parent 755ec79e7d
commit 683c1a4641
2 changed files with 3 additions and 2 deletions

View file

@ -279,8 +279,8 @@ class Application_Model_StreamSetting
public static function getDefaults($prefix) {
$config = Config::getConfig();
return array(
'host' => $config['stationId'] . '.out.airtime.pro',
'port' => 8000,
'host' => $config['baseUrl'],
'port' => DEFAULT_ICECAST_PORT,
'output' => 'icecast',
'user' => $config['stationId'],
'pass' => Application_Model_Preference::getDefaultIcecastPassword(),