修复一个拼写错误:默认安装的节点从https改成http

This commit is contained in:
刘祥超
2021-11-21 19:28:05 +08:00
parent 1c8564d817
commit eefb497c20

View File

@@ -134,7 +134,7 @@ func (this *Setup) Run() error {
httpConfig.IsOn = true
httpConfig.Listen = []*serverconfigs.NetworkAddressConfig{
{
Protocol: "https",
Protocol: "http",
PortRange: strconv.Itoa(this.config.APINodePort),
},
}