mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-22 11:08:10 +02:00
core/config: remove cookie secure option (#4907)
This commit is contained in:
parent
d5b4910951
commit
f684910ab3
9 changed files with 431 additions and 452 deletions
|
@ -40,7 +40,7 @@ func NewSessionStore(options *Options) (*SessionStore, error) {
|
|||
return cookie.Options{
|
||||
Name: options.CookieName,
|
||||
Domain: options.CookieDomain,
|
||||
Secure: options.CookieSecure,
|
||||
Secure: true,
|
||||
HTTPOnly: options.CookieHTTPOnly,
|
||||
Expire: options.CookieExpire,
|
||||
SameSite: options.GetCookieSameSite(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue