[bugfix] Only mark cookies as Secure on https (#398)
Fixes cookies not being stored/sent by Safari when serving over plain http
This commit is contained in:
parent
dc2421752f
commit
09d6478d72
|
@ -38,10 +38,10 @@ func SessionOptions() sessions.Options {
|
||||||
return sessions.Options{
|
return sessions.Options{
|
||||||
Path: "/",
|
Path: "/",
|
||||||
Domain: viper.GetString(config.Keys.Host),
|
Domain: viper.GetString(config.Keys.Host),
|
||||||
MaxAge: 120, // 2 minutes
|
MaxAge: 120, // 2 minutes
|
||||||
Secure: true, // only use cookie over https
|
Secure: viper.GetString(config.Keys.Protocol) == "https", // only use cookie over https
|
||||||
HttpOnly: true, // exclude javascript from inspecting cookie
|
HttpOnly: true, // exclude javascript from inspecting cookie
|
||||||
SameSite: http.SameSiteDefaultMode, // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-same-site-00#section-4.1.1
|
SameSite: http.SameSiteDefaultMode, // https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-cookie-same-site-00#section-4.1.1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue