mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 12:20:28 +08:00
7 lines
216 B
Go
7 lines
216 B
Go
package serverconfigs
|
|
|
|
type ReverseProxyConfig struct {
|
|
IsOn bool `yaml:"isOn" json:"isOn"` // 是否启用
|
|
Origins []*OriginServerConfig `yaml:"origins" json:"origins"` // 源站列表
|
|
}
|