mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-27 06:59:18 -06:00
12 lines
393 B
Go
12 lines
393 B
Go
package config
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `yaml:"addr" env:"IDP_HTTP_ADDR"`
|
|
Root string `yaml:"root" env:"IDP_HTTP_ROOT"`
|
|
Namespace string `yaml:"-"`
|
|
TLSCert string `yaml:"tls_cert" env:"IDP_TRANSPORT_TLS_CERT"`
|
|
TLSKey string `yaml:"tls_key" env:"IDP_TRANSPORT_TLS_KEY"`
|
|
TLS bool `yaml:"tls" env:"IDP_TLS"`
|
|
}
|