mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 12:50:21 -06:00
10 lines
277 B
Go
10 lines
277 B
Go
package config
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `yaml:"addr" env:"WEB_HTTP_ADDR"`
|
|
Namespace string `yaml:"-"`
|
|
Root string `yaml:"root" env:"WEB_HTTP_ROOT"`
|
|
CacheTTL int `yaml:"cache_ttl" env:"WEB_CACHE_TTL"`
|
|
}
|