feat(authn-oidc): match login callback/logout urls with query string by default
Cadoles/bouncer/pipeline/head This commit looks good
Details
Cadoles/bouncer/pipeline/head This commit looks good
Details
This commit is contained in:
parent
3e5dd446cb
commit
26a9ad0e2e
|
@ -49,9 +49,9 @@ func fromStoreOptions(storeOptions store.LayerOptions, baseURL string) (*LayerOp
|
||||||
LayerOptions: authn.DefaultLayerOptions(),
|
LayerOptions: authn.DefaultLayerOptions(),
|
||||||
OIDC: OIDCOptions{
|
OIDC: OIDCOptions{
|
||||||
LoginCallbackURL: baseURL + loginCallbackPath,
|
LoginCallbackURL: baseURL + loginCallbackPath,
|
||||||
MatchLoginCallbackURL: "*" + loginCallbackPath,
|
MatchLoginCallbackURL: "*" + loginCallbackPath + "*",
|
||||||
LogoutURL: baseURL + logoutPath,
|
LogoutURL: baseURL + logoutPath,
|
||||||
MatchLogoutURL: "*" + logoutPath,
|
MatchLogoutURL: "*" + logoutPath + "*",
|
||||||
Scopes: []string{"openid"},
|
Scopes: []string{"openid"},
|
||||||
},
|
},
|
||||||
Cookie: CookieOptions{
|
Cookie: CookieOptions{
|
||||||
|
|
Loading…
Reference in New Issue