mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-04 05:00:24 +08:00
14 lines
424 B
Go
14 lines
424 B
Go
package serverconfigs
|
|
|
|
// ReverseProxyRef 反向代理引用
|
|
type ReverseProxyRef struct {
|
|
IsPrior bool `yaml:"isPrior" json:"isPrior"` // 是否覆盖
|
|
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
|
|
ReverseProxyId int64 `yaml:"reverseProxyId" json:"reverseProxyId"` // 反向代理ID
|
|
}
|
|
|
|
// Init 初始化
|
|
func (this *ReverseProxyRef) Init() error {
|
|
return nil
|
|
}
|