修改反向代理实现

This commit is contained in:
GoEdgeLab
2020-09-21 11:37:09 +08:00
parent e8b207e5bb
commit 5e634e3da4
14 changed files with 520 additions and 312 deletions

View File

@@ -0,0 +1,7 @@
package serverconfigs
// 反向代理引用
type ReverseProxyRef struct {
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
ReverseProxyId int64 `yaml:"reverseProxyId" json:"reverseProxyId"` // 反向代理ID
}