You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have implemented the OIDC authorization code flow for my application (using Keycloak as IdP).
Now I think about deploying the application in a cluster behind a load-balancer.
In oic.oauth2.Client there are several object variables which carry state, so I think the load-balancer will have to be setup in a way, that each user is always routed to the same app instance.
Is this correct?
The text was updated successfully, but these errors were encountered:
👍 I think the central storage would be the better option, so we can restart the application server without losing sessions.
What would be a good way to achieve this? Is it enough to override the SessionBackend? Or do we also need to centrally store the "grant", "state2nonce",... dicts?
I have implemented the OIDC authorization code flow for my application (using Keycloak as IdP).
Now I think about deploying the application in a cluster behind a load-balancer.
In oic.oauth2.Client there are several object variables which carry state, so I think the load-balancer will have to be setup in a way, that each user is always routed to the same app instance.
Is this correct?
The text was updated successfully, but these errors were encountered: