fix: secure session cookie (#2308)

This commit is contained in:
TheCatLady
2021-12-07 19:05:39 -05:00
committed by GitHub
parent 88a8c1aa59
commit 7f330aff2e

View File

@@ -139,6 +139,9 @@ app
saveUninitialized: false, saveUninitialized: false,
cookie: { cookie: {
maxAge: 1000 * 60 * 60 * 24 * 30, maxAge: 1000 * 60 * 60 * 24 * 30,
httpOnly: true,
sameSite: true,
secure: 'auto',
}, },
store: new TypeormStore({ store: new TypeormStore({
cleanupLimit: 2, cleanupLimit: 2,