mirror of
https://github.com/alice-lg/birdwatcher.git
synced 2025-03-09 00:00:05 +01:00
12 lines
329 B
Go
12 lines
329 B
Go
package endpoints
|
|
|
|
// Endpoints / Server configuration
|
|
type ServerConfig struct {
|
|
AllowFrom []string `toml:"allow_from"`
|
|
ModulesEnabled []string `toml:"modules_enabled"`
|
|
AllowUncached bool `toml:"allow_uncached"`
|
|
|
|
EnableTLS bool `toml:"enable_tls"`
|
|
Crt string `toml:"crt"`
|
|
Key string `toml:"key"`
|
|
}
|