fix docker auth
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m3s

This commit is contained in:
Garret Patti
2026-04-05 19:59:24 -04:00
parent 612e20da8e
commit 334d62e3b3
3 changed files with 13 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ export function getSessionOptions(): SessionOptions {
cookieName: 'ml_session',
ttl: 60 * 60 * 24 * 30, // 30 days
cookieOptions: {
secure: process.env.NODE_ENV === 'production',
secure: process.env.COOKIE_SECURE === 'true',
httpOnly: true,
sameSite: 'lax',
},