feat(authn-oidc): match login callback/logout urls with query string by default
Cadoles/bouncer/pipeline/head This commit looks good Details

This commit is contained in:
wpetit 2024-05-24 15:28:21 +02:00
parent 3e5dd446cb
commit 26a9ad0e2e
1 changed files with 2 additions and 2 deletions

View File

@ -49,9 +49,9 @@ func fromStoreOptions(storeOptions store.LayerOptions, baseURL string) (*LayerOp
LayerOptions: authn.DefaultLayerOptions(),
OIDC: OIDCOptions{
LoginCallbackURL: baseURL + loginCallbackPath,
MatchLoginCallbackURL: "*" + loginCallbackPath,
MatchLoginCallbackURL: "*" + loginCallbackPath + "*",
LogoutURL: baseURL + logoutPath,
MatchLogoutURL: "*" + logoutPath,
MatchLogoutURL: "*" + logoutPath + "*",
Scopes: []string{"openid"},
},
Cookie: CookieOptions{