Files
EdgeNode/internal/configs/serverconfigs/web_config.go
2020-09-09 18:53:53 +08:00

11 lines
266 B
Go

package serverconfigs
type WebConfig struct {
IsOn bool `yaml:"isOn" json:"isOn"`
Locations []*LocationConfig `yaml:"locations" json:"locations"` // 路径规则 TODO
// 本地静态资源配置
Root string `yaml:"root" json:"root"` // 资源根目录 TODO
}