Do not start openid connect provider - OCIS will use konnectd by def… (#61)

* Do not start openid connect provider - OCIS will use konnectd by default

* default to konnectd as oidc

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>

Co-authored-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Thomas Müller
2020-02-13 21:25:52 +01:00
committed by GitHub
parent f1e6fb3c54
commit 584d47daa8
3 changed files with 4 additions and 47 deletions
+2 -1
View File
@@ -113,13 +113,14 @@ func FrontendWithConfig(cfg *config.Config) []cli.Flag {
&cli.StringFlag{
Name: "oidc-issuer",
Value: "http://localhost:9140",
Value: "https://localhost:9130",
Usage: "OIDC issuer",
EnvVars: []string{"REVA_OIDC_ISSUER"},
Destination: &cfg.Reva.OIDC.Issuer,
},
&cli.BoolFlag{
Name: "oidc-insecure",
Value: true,
Usage: "OIDC allow insecure communication",
EnvVars: []string{"REVA_OIDC_INSECURE"},
Destination: &cfg.Reva.OIDC.Insecure,