forked from lxh/go-wxhelper
🎨 逻辑优化
This commit is contained in:
parent
3bc95e1317
commit
3fbaf7aeb6
@ -4,7 +4,7 @@ wechat:
|
|||||||
host: 10.0.0.73:19088
|
host: 10.0.0.73:19088
|
||||||
# 是否在启动的时候自动设置hook服务的回调
|
# 是否在启动的时候自动设置hook服务的回调
|
||||||
autoSetCallback: false
|
autoSetCallback: false
|
||||||
# 回调IP,如果是Docker运行,本参数必填,如果Docker修改了映射,格式为 ip:port
|
# 回调IP,如果是Docker运行,本参数必填(填auto表示自动,不适用于 docker 环境),如果Docker修改了映射,格式为 ip:port
|
||||||
callback: 10.0.0.51
|
callback: 10.0.0.51
|
||||||
# 转发到其他地址
|
# 转发到其他地址
|
||||||
forward:
|
forward:
|
||||||
|
@ -16,8 +16,8 @@ wechat:
|
|||||||
host: wechat:19088
|
host: wechat:19088
|
||||||
# 是否在启动的时候自动设置hook服务的回调
|
# 是否在启动的时候自动设置hook服务的回调
|
||||||
autoSetCallback: true
|
autoSetCallback: true
|
||||||
# 回调IP,如果是Docker运行,本参数必填,如果Docker修改了映射,格式为 ip:port,如果使用项目提供的docker-compsoe.yaml文件启动,可以不写
|
# 回调IP,如果是Docker运行,本参数必填,如果Docker修改了映射,格式为 ip:port,如果使用项目提供的docker-compsoe.yaml文件启动,可以填`auto`
|
||||||
callback:
|
callback: auto
|
||||||
|
|
||||||
# 数据库
|
# 数据库
|
||||||
mysql:
|
mysql:
|
||||||
|
@ -29,7 +29,11 @@ func ClearCallback() {
|
|||||||
// @param host
|
// @param host
|
||||||
func SetCallback(userHost string) {
|
func SetCallback(userHost string) {
|
||||||
// 获取本机IP地址
|
// 获取本机IP地址
|
||||||
host := net.ParseIP(netutil.GetInternalIp()).String()
|
host := userHost
|
||||||
|
if userHost == "auto" {
|
||||||
|
host = net.ParseIP(netutil.GetInternalIp()).String()
|
||||||
|
}
|
||||||
|
|
||||||
port := 19099
|
port := 19099
|
||||||
if userHost != "" {
|
if userHost != "" {
|
||||||
uh := strings.Split(strings.TrimSpace(userHost), ":")
|
uh := strings.Split(strings.TrimSpace(userHost), ":")
|
||||||
|
Loading…
Reference in New Issue
Block a user