Skip to content
Snippets Groups Projects
Commit 93ceaebe authored by ale's avatar ale
Browse files

remove unused shoutcast listener on :8001

parent 77b839a9
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,7 @@ import (
)
var (
baseHttpPort = 8000
shoutHttpPort = 8001
//shoutHttpPort = 8001
maxClients = 10000
)
......@@ -135,8 +134,8 @@ func defaultDebianConfig(publicIp string) *icecastConfig {
},
Security: iceSecurityConfig{0},
Listen: []iceListenConfig{
{"0.0.0.0", baseHttpPort, 0},
{"0.0.0.0", shoutHttpPort, 1},
{"0.0.0.0", radioai.IcecastPort, 0},
//{"0.0.0.0", shoutHttpPort, 1},
},
}
}
......@@ -195,7 +194,7 @@ func mountToRelay(masterAddr string, m *radioai.Mount) iceRelayConfig {
Mount: m.Name,
LocalMount: m.Name,
Server: masterAddr,
Port: baseHttpPort,
Port: radioai.IcecastPort,
Username: m.Username,
Password: m.Password,
OnDemand: 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment