Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

Commit

Permalink
change default port for oidc to reva idp
Browse files Browse the repository at this point in the history
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
  • Loading branch information
butonic committed Jan 16, 2020
1 parent 8ce2f00 commit de59eb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/flagset/flagset.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
},
&cli.StringFlag{
Name: "web-config-server",
Value: "http://localhost:9135",
Value: "http://localhost:9140",
Usage: "Server URL",
EnvVar: "PHOENIX_WEB_CONFIG_SERVER",
Destination: &cfg.Phoenix.Config.Server,
Expand Down Expand Up @@ -178,14 +178,14 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag {
// TODO EXTERNAL APPS?
&cli.StringFlag{
Name: "oidc-metadata-url",
Value: "http://localhost:9130/.well-known/openid-configuration",
Value: "http://localhost:9140/.well-known/openid-configuration",
Usage: "OpenID Connect metadata URL",
EnvVar: "PHOENIX_OIDC_METADATA_URL",
Destination: &cfg.Phoenix.Config.OpenIDConnect.MetadataURL,
},
&cli.StringFlag{
Name: "oidc-authority",
Value: "http://localhost:9130",
Value: "http://localhost:9140",
Usage: "OpenID Connect authority", // TODO rename to Issuer
EnvVar: "PHOENIX_OIDC_AUTHORITY",
Destination: &cfg.Phoenix.Config.OpenIDConnect.Authority,
Expand Down

0 comments on commit de59eb3

Please sign in to comment.