1
1
mirror of https://github.com/go-gitea/gitea synced 2024-09-27 23:04:07 +00:00

Add secure/httpOnly attributes to the lang cookie (#14279) (#14280)

* Add secure/httpOnly attributes to the lang cookie (#9690) (#14279)

* apply to InitLocales() too

Co-authored-by: Timo Gurr <timo.gurr@gmail.com>
This commit is contained in:
6543 2021-01-07 15:35:02 +01:00 committed by GitHub
parent 4be59eb5d9
commit fb656b5124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 14 deletions

View File

@ -116,6 +116,8 @@ func InitLocales() {
Names: setting.Names,
DefaultLang: "en-US",
Redirect: false,
CookieHttpOnly: true,
Secure: setting.SessionConfig.Secure,
CookieDomain: setting.SessionConfig.Domain,
})
}

View File

@ -253,6 +253,8 @@ func NewMacaron() *macaron.Macaron {
Names: setting.Names,
DefaultLang: "en-US",
Redirect: false,
CookieHttpOnly: true,
Secure: setting.SessionConfig.Secure,
CookieDomain: setting.SessionConfig.Domain,
}))
m.Use(cache.Cacher(cache.Options{