Skip to content

Commit 7ee02f3

Browse files
committed
[#2457] more precise setting description
1 parent 1b13a5d commit 7ee02f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/server/oidc/settings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type Settings struct {
2525
GroupMapping GroupMapping `group:"OIDC to Stork group mapping"`
2626
Scopes CommaSeparatedStrings `long:"oidc-scopes" description:"Comma separated list of scopes sent in Authentication Request. Stork always sends 'openid' scope and this list is appended." env:"STORK_OIDC_SCOPES" default:"email,profile"`
2727
GroupsClaim string `long:"oidc-groups-claim" description:"Claim key used to retrieve user groups from OID Provider token endpoint. It must be configured if 'group-allow' or 'map-groups' setting is used" env:"STORK_OIDC_GROUPS_CLAIM" default:"groups"`
28-
RedirectURI string `long:"oidc-redirect-uri" description:"Redirection URI to which the response to OIDC authentication request will be sent. If configured, it must end with '/oidc/callback' path. Example: 'https://example.org:1234/stork/oidc/callback'. If left empty, Stork will try to construct this URI by joining Stork server address (scheme+host+port+rest-base-url setting) with '/oidc/callback' path. It is useful when Stork UI is behind a Reverse Proxy and the UI is served under a different URL than Stork server." env:"STORK_OIDC_REDIRECT_URI" default:""`
28+
RedirectURI string `long:"oidc-redirect-uri" description:"Redirection URI to which the response to OIDC authentication request will be sent. If configured, it must end with '/oidc/callback' path. Example: 'https://example.org:1234/stork/oidc/callback'. If left empty, Stork will try to construct this URI by joining Stork server address (scheme+'rest-host'+'rest-port'+'rest-base-url' settings) with '/oidc/callback' path. It is useful when Stork UI is behind a Reverse Proxy and the UI is served under a different URL than Stork server." env:"STORK_OIDC_REDIRECT_URI" default:""`
2929
}
3030

3131
// Implementation of go-flags Unmarshaler interface. Unmarshals a comma-separated values in a string into a slice of strings.

0 commit comments

Comments
 (0)