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

This commit is contained in:
GoEdgeLab
2021-11-21 19:28:05 +08:00
parent 8c468373a3
commit ed7df4d5ad

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),
},
}