mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-25 14:30:28 -05:00
This add a new service "idm" providing and LDAP service (via ldaps) on port 9235. If not existing it will bootstrap an initial LDAP tree and administrative user as well as a self-signed Certificate and Key (similar to what is done for glauth).
10 lines
322 B
Go
10 lines
322 B
Go
package config
|
|
|
|
// Debug defines the available debug configuration.
|
|
type Debug struct {
|
|
Addr string `ocisConfig:"addr" env:"IDM_DEBUG_ADDR"`
|
|
Token string `ocisConfig:"token" env:"IDM_DEBUG_TOKEN"`
|
|
Pprof bool `ocisConfig:"pprof" env:"IDM_DEBUG_PPROF"`
|
|
Zpages bool `ocisConfig:"zpages" env:"IDM_DEBUG_ZPAGES"`
|
|
}
|