improve security by shortn the cookie ttl

This commit is contained in:
Christian Kellner
2025-09-04 12:52:18 +02:00
parent da848fcca1
commit 0d2b21c789

View File

@@ -37,7 +37,7 @@ const cookieSession$0 = (userId) => {
name: 'fredy-admin-session',
keys: ['fredy', 'super', 'fancy', 'key', nanoid()],
userId,
maxAge: 8 * 60 * 60 * 1000, // 8 hours
maxAge: 2 * 60 * 60 * 1000, // 2 hours
});
};
export { cookieSession$0 as cookieSession };