mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-02 18:30:14 -06:00
11 lines
360 B
Go
11 lines
360 B
Go
package config
|
|
|
|
// Ldaps defined the available LDAPS configuration.
|
|
type Ldaps struct {
|
|
Enabled bool `ocisConfig:"enabled" env:"GLAUTH_LDAPS_ENABLED"`
|
|
Addr string `ocisConfig:"addr" env:"GLAUTH_LDAPS_ADDR"`
|
|
Namespace string
|
|
Cert string `ocisConfig:"cert" env:"GLAUTH_LDAPS_CERT"`
|
|
Key string `ocisConfig:"key" env:"GLAUTH_LDAPS_KEY"`
|
|
}
|