diff --git a/internal/outpost/proxyv2/application/session.go b/internal/outpost/proxyv2/application/session.go index d2be5c76b..94b8d641d 100644 --- a/internal/outpost/proxyv2/application/session.go +++ b/internal/outpost/proxyv2/application/session.go @@ -3,7 +3,6 @@ package application import ( "fmt" "math" - "net/http" "net/url" "os" "strconv" @@ -31,7 +30,6 @@ func (a *Application) getStore(p api.ProxyOutpostConfig, externalHost *url.URL) } rs.Options.Path = externalHost.Path rs.Options.Domain = *p.CookieDomain - rs.Options.SameSite = http.SameSiteNoneMode a.log.Trace("using redis session backend") store = rs } else { @@ -53,7 +51,6 @@ func (a *Application) getStore(p api.ProxyOutpostConfig, externalHost *url.URL) } cs.Options.Path = externalHost.Path cs.Options.Domain = *p.CookieDomain - cs.Options.SameSite = http.SameSiteNoneMode a.log.WithField("dir", dir).Trace("using filesystem session backend") store = cs }