Change default settings to be able to run ocis server without any configuration

- Konnectd uses no TLS as it is behind the proxy
- Glauth generates dev-certificates for ldap on startup if none are provided,
- Glauth can launch unencrypted (9125) and encrypted (9126) port in parallel

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Ilja Neumann
2020-03-18 20:18:52 +01:00
committed by Jörn Friedrich Dreyer
parent d654079df8
commit 2615b65021
4 changed files with 73 additions and 301 deletions

View File

@@ -32,6 +32,7 @@ func configureKonnectd(cfg *config.Config) *svcconfig.Config {
cfg.Konnectd.Log.Level = cfg.Log.Level
cfg.Konnectd.Log.Pretty = cfg.Log.Pretty
cfg.Konnectd.Log.Color = cfg.Log.Color
cfg.Konnectd.HTTP.TLS = false
return cfg.Konnectd
}