2022-07-14 17:18:08 +01:00
|
|
|
package conf
|
|
|
|
|
|
|
|
type ServeYaml struct {
|
2022-07-15 13:28:29 +01:00
|
|
|
DataStorage string `yaml:"dataStorage"`
|
|
|
|
Domains []string `yaml:"domains"`
|
|
|
|
RangeSupported bool `yaml:"rangeSupported"`
|
|
|
|
FilterURLQueries bool `yaml:"filterURLQueries"`
|
|
|
|
CacheSettings CacheSettingsYaml `yaml:"cacheSettings"`
|
2022-07-14 17:18:08 +01:00
|
|
|
}
|