Files
ocis/services/collaboration/pkg/config/http.go
2024-06-19 19:45:57 +02:00

13 lines
386 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:"6.0.0"`
Namespace string `yaml:"-"`
TLS shared.HTTPServiceTLS `yaml:"tls"`
}