internal: revert cookie path on proxy causing redirect loops

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-05-21 16:26:12 +02:00
parent b8fdb82adc
commit 646d174dd2
1 changed files with 0 additions and 2 deletions

View File

@ -28,7 +28,6 @@ func (a *Application) getStore(p api.ProxyOutpostConfig, externalHost *url.URL)
} else {
rs.SetMaxAge(0)
}
rs.Options.Path = externalHost.Path
rs.Options.Domain = *p.CookieDomain
a.log.Trace("using redis session backend")
store = rs
@ -49,7 +48,6 @@ func (a *Application) getStore(p api.ProxyOutpostConfig, externalHost *url.URL)
} else {
cs.MaxAge(0)
}
cs.Options.Path = externalHost.Path
cs.Options.Domain = *p.CookieDomain
a.log.WithField("dir", dir).Trace("using filesystem session backend")
store = cs