Merge pull request #41 from owncloud/set-konnect-defaults

Set ocis-konnect defaults
This commit is contained in:
Jörn Friedrich Dreyer
2020-02-13 21:26:43 +01:00
committed by GitHub

View File

@@ -179,14 +179,14 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.StringFlag{
Name: "oidc-metadata-url",
Value: "http://localhost:9140/.well-known/openid-configuration",
Value: "https://localost:9130/.well-known/openid-configuration",
Usage: "OpenID Connect metadata URL",
EnvVars: []string{"PHOENIX_OIDC_METADATA_URL"},
Destination: &cfg.Phoenix.Config.OpenIDConnect.MetadataURL,
},
&cli.StringFlag{
Name: "oidc-authority",
Value: "http://localhost:9140",
Value: "https://localhost:9130",
Usage: "OpenID Connect authority", // TODO rename to Issuer
EnvVars: []string{"PHOENIX_OIDC_AUTHORITY"},
Destination: &cfg.Phoenix.Config.OpenIDConnect.Authority,