From 678bae20b5947b8b37ef25e829b49229414c2b7c Mon Sep 17 00:00:00 2001 From: Caleb Doxsey Date: Thu, 16 Feb 2023 08:52:18 -0700 Subject: [PATCH] authenticate: save the session cookie with a different name (#3978) --- authenticate/state.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authenticate/state.go b/authenticate/state.go index 200e68976..91206a574 100644 --- a/authenticate/state.go +++ b/authenticate/state.go @@ -96,7 +96,7 @@ func newAuthenticateStateFromConfig(cfg *config.Config) (*authenticateState, err cookieStore, err := cookie.NewStore(func() cookie.Options { return cookie.Options{ - Name: cfg.Options.CookieName, + Name: cfg.Options.CookieName + "_authenticate", Domain: cfg.Options.CookieDomain, Secure: cfg.Options.CookieSecure, HTTPOnly: cfg.Options.CookieHTTPOnly,