-
Notifications
You must be signed in to change notification settings - Fork 638
oidc-proxy new iam 2 #6059
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
oidc-proxy new iam 2 #6059
Conversation
⚪
|
⚪
|
875c66e
to
0489405
Compare
⚪
|
⚪
|
⚪
|
⚪
|
37a053f
to
07adcf7
Compare
⚪
|
⚪
|
⚪
|
⚪
|
c7dcc62
to
0783510
Compare
0783510
to
1f58de6
Compare
1f58de6
to
949846b
Compare
|
||
void RemoveAppliedCookie(const TString& cookieName) override { | ||
ResponseHeaders.Set("Set-Cookie", TStringBuilder() << cookieName << "=; Path=" << GetAuthCallbackUrl() << "; Max-Age=0"); | ||
ResponseHeaders.Set("Set-Cookie", TStringBuilder() << CreateNameSessionCookie(Settings.ClientId) << "=; Max-Age=0"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it valid to set two headers with the same name?
We have TMap for headers here, not multimap((
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review comments
⚪
|
⚪
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All other comments we decided to fix in background
Changelog entry
issue
auth-profile
, which determines the logic that oidc_proxy will follow. Possible options:y-profile
,n-profile
. Default isy-profile
auth-profile
. The old handlers were not changed, so some logic is duplicated. I plan to combine some of the logic in a minor refactoring later.auth-profile
also. I plan to new version support formeta
later.Changelog category
Additional information
...