Revert "outposts/proxy: don't save raw jwt in cookie to prevent securecookie: the value is too long"

This reverts commit b3e40c6aed.
This commit is contained in:
Jens Langhammer
2021-12-12 17:58:19 +01:00
parent a24651437a
commit 2ddf122d27
3 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,7 @@ func (a *Application) addHeaders(headers http.Header, c *Claims) {
headers.Set("X-authentik-email", c.Email)
headers.Set("X-authentik-name", c.Name)
headers.Set("X-authentik-uid", c.Sub)
headers.Set("X-authentik-jwt", c.RawToken)
// System headers
headers.Set("X-authentik-meta-jwks", a.proxyConfig.OidcConfiguration.JwksUri)