mirror of
https://github.com/suitenumerique/drive.git
synced 2026-08-29 03:09:47 +02:00
The cookies set by keycloak were not formatted correctly so the browser was not taking them into account. Providing those additionnal directives fixes the issue. Before: Set-Cookie: KEYCLOAK_SESSION=<T>; Version=1; Path=/; SameSite=Laxrealms/drive/; Max-Age=36000; Secure; SameSite=None After: Set-Cookie: KEYCLOAK_SESSION=<T>; Version=1; Path=/realms/drive/; SameSite=Lax; Max-Age=36000; Secure; SameSite=None