| 12345678910111213141516171819202122232425262728 |
- package guerrilla
- // AppConfig is the holder of the configuration of the app
- type AppConfig struct {
- Dashboard DashboardConfig `json:"dashboard"`
- Servers []ServerConfig `json:"servers"`
- AllowedHosts []string `json:"allowed_hosts"`
- }
- type DashboardConfig struct {
- Enabled bool `json:"enabled"`
- ListenInterface string `json:"listen_interface"`
- }
- // ServerConfig specifies config options for a single server
- type ServerConfig struct {
- IsEnabled bool `json:"is_enabled"`
- Hostname string `json:"host_name"`
- AllowedHosts []string `json:"allowed_hosts"`
- MaxSize int64 `json:"max_size"`
- PrivateKeyFile string `json:"private_key_file"`
- PublicKeyFile string `json:"public_key_file"`
- Timeout int `json:"timeout"`
- ListenInterface string `json:"listen_interface"`
- StartTLSOn bool `json:"start_tls_on,omitempty"`
- TLSAlwaysOn bool `json:"tls_always_on,omitempty"`
- MaxClients int `json:"max_clients"`
- }
|