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

change default port for oidc to reva idp #29

Merged
merged 2 commits into from
Jan 17, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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