Skip to content

Commit

Permalink
Merged branch bugfix/a-very-tricky-bugfix into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
horia141 committed Oct 18, 2024
1 parent d5ec617 commit 6378e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/app/sessions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const { getSession, commitSession, destroySession } =
httpOnly: true,
maxAge: 60 * 60 * 24 * 30, // 30 days
path: "/",
sameSite: "strict",
sameSite: "lax", // Not strict because of https://github.com/oauth2-proxy/oauth2-proxy/issues/830
secure: GLOBAL_PROPERTIES.env === Env.LOCAL ? false : true,
secrets: [GLOBAL_PROPERTIES.sessionCookieSecret],
},
Expand Down

0 comments on commit 6378e31

Please sign in to comment.