mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-13 20:58:03 -04:00
13 lines
389 B
Go
13 lines
389 B
Go
package config
|
|
|
|
import (
|
|
"github.com/owncloud/ocis/v2/ocis-pkg/shared"
|
|
)
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `yaml:"addr" env:"COLLABORATION_HTTP_ADDR" desc:"The bind address of the HTTP service." introductionVersion:"%%NEXT%%"`
|
|
Namespace string `yaml:"-"`
|
|
TLS shared.HTTPServiceTLS `yaml:"tls"`
|
|
}
|