Open Ask AI (⌘/Ctrl+I)
On this page

SSO known issues

In your Tomcat configuration, make sure that the CookieProcessor component does not have the sameSiteCookies property set to strict. Instead, set the property to Lax:

Tomcat

<CookieProcessor sameSiteCookies="Lax" /> <1>

sameSiteCookies set to Lax instead of strict.

Modify values.yml

To modify sameSiteCookies, update your values.yml file.

values.yml

magnoliaAuthor:
  sameSiteCookies: Lax <1>

sameSiteCookies set to Lax instead of strict.