add optional config setting to use nats standard tcp instead of websockets
This commit is contained in:
parent
38907f6bc2
commit
92dd7c110f
@ -151,7 +151,13 @@ func New(logger *logrus.Logger, version string) *Agent {
|
|||||||
natsProxyPort = "443"
|
natsProxyPort = "443"
|
||||||
}
|
}
|
||||||
|
|
||||||
natsServer := fmt.Sprintf("wss://%s:%s", ac.APIURL, natsProxyPort)
|
// check if using nats standard tcp, otherwise use nats websockets by default
|
||||||
|
var natsServer string
|
||||||
|
if ac.NatsStandardPort != "" {
|
||||||
|
natsServer = fmt.Sprintf("tls://%s:%s", ac.APIURL, ac.NatsStandardPort)
|
||||||
|
} else {
|
||||||
|
natsServer = fmt.Sprintf("wss://%s:%s", ac.APIURL, natsProxyPort)
|
||||||
|
}
|
||||||
|
|
||||||
return &Agent{
|
return &Agent{
|
||||||
Hostname: info.Hostname,
|
Hostname: info.Hostname,
|
||||||
|
@ -157,6 +157,7 @@ func NewAgentConfig() *rmm.AgentConfig {
|
|||||||
CustomMeshDir: viper.GetString("meshdir"),
|
CustomMeshDir: viper.GetString("meshdir"),
|
||||||
NatsProxyPath: viper.GetString("natsproxypath"),
|
NatsProxyPath: viper.GetString("natsproxypath"),
|
||||||
NatsProxyPort: viper.GetString("natsproxyport"),
|
NatsProxyPort: viper.GetString("natsproxyport"),
|
||||||
|
NatsStandardPort: viper.GetString("natsstandardport"),
|
||||||
}
|
}
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
@ -63,6 +63,7 @@ func NewAgentConfig() *rmm.AgentConfig {
|
|||||||
customMeshDir, _, _ := k.GetStringValue("MeshDir")
|
customMeshDir, _, _ := k.GetStringValue("MeshDir")
|
||||||
natsProxyPath, _, _ := k.GetStringValue("NatsProxyPath")
|
natsProxyPath, _, _ := k.GetStringValue("NatsProxyPath")
|
||||||
natsProxyPort, _, _ := k.GetStringValue("NatsProxyPort")
|
natsProxyPort, _, _ := k.GetStringValue("NatsProxyPort")
|
||||||
|
natsStandardPort, _, _ := k.GetStringValue("NatsStandardPort")
|
||||||
|
|
||||||
return &rmm.AgentConfig{
|
return &rmm.AgentConfig{
|
||||||
BaseURL: baseurl,
|
BaseURL: baseurl,
|
||||||
@ -76,6 +77,7 @@ func NewAgentConfig() *rmm.AgentConfig {
|
|||||||
CustomMeshDir: customMeshDir,
|
CustomMeshDir: customMeshDir,
|
||||||
NatsProxyPath: natsProxyPath,
|
NatsProxyPath: natsProxyPath,
|
||||||
NatsProxyPort: natsProxyPort,
|
NatsProxyPort: natsProxyPort,
|
||||||
|
NatsStandardPort: natsStandardPort,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,6 +44,7 @@ type AgentConfig struct {
|
|||||||
CustomMeshDir string
|
CustomMeshDir string
|
||||||
NatsProxyPath string
|
NatsProxyPath string
|
||||||
NatsProxyPort string
|
NatsProxyPort string
|
||||||
|
NatsStandardPort string
|
||||||
}
|
}
|
||||||
|
|
||||||
type RunScriptResp struct {
|
type RunScriptResp struct {
|
||||||
|
Loading…
Reference in New Issue
Block a user