- fix fallback when SERVFAIL or REFUSED is received from upstream (!784)
- fix crash when dealing with unknown TA key algorhitm (#449)
- go insecure due to algorithm support even if DNSKEY is NODATA (!798)
+- http module: fix too early renewal of ephemeral certificates (!808)
Module API changes
------------------
-- Create certificate renewal timer if ephemeral
if crt and conf.ephemeral then
local _, expiry = crt:getLifetime()
- expiry = math.max(0, expiry - (os.time() - 3 * 24 * 3600))
+ expiry = 1000 * math.max(0, expiry - (os.time() - 3 * 24 * 3600))
event.after(expiry, function ()
log('[http] refreshed ephemeral certificate')
crt, key = updatecert(conf.cert, conf.key)