avoid a syscall for cookies

This commit is contained in:
Kay0u 2021-04-08 11:11:46 +02:00
parent 547e15157b
commit 45e4f9de05
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D

View file

@ -176,7 +176,7 @@ function set_auth_cookie(user, domain)
"|"..session_key)
local cookie_str = "; Domain=."..domain..
"; Path=/"..
"; Expires="..os.date("%a, %d %b %Y %X UTC", expire)..
"; Expires="..ngx.cookie_time(expire)..
"; Secure"..
"; HttpOnly"..
"; SameSite=Lax"
@ -192,11 +192,10 @@ end
-- Expires the 3 session cookies
function delete_cookie()
local expired_time = "Thu, 01 Jan 1970 00:00:00 UTC"
for _, domain in ipairs(conf["domains"]) do
local cookie_str = "; Domain=."..domain..
"; Path=/"..
"; Expires="..expired_time..
"; Expires="..ngx.cookie_time(0)..
"; Secure"..
"; HttpOnly"..
"; SameSite=Lax"