authelia/internal/configuration/schema/server.go

17 lines
608 B
Go

package schema
// ServerConfiguration represents the configuration of the http server.
type ServerConfiguration struct {
Path string `mapstructure:"path"`
ReadBufferSize int `mapstructure:"read_buffer_size"`
WriteBufferSize int `mapstructure:"write_buffer_size"`
EnablePprof bool `mapstructure:"enable_endpoint_pprof"`
EnableExpvars bool `mapstructure:"enable_endpoint_expvars"`
}
// DefaultServerConfiguration represents the default values of the ServerConfiguration.
var DefaultServerConfiguration = ServerConfiguration{
ReadBufferSize: 4096,
WriteBufferSize: 4096,
}