fix(auth): correct local cookie security configuration

This commit is contained in:
Schubert Ferenc 2026-07-11 15:50:15 +02:00
parent b584e60273
commit 155fdbb16a
67 changed files with 1003 additions and 62 deletions

View file

@ -40,7 +40,10 @@ services:
depends_on:
- mercury-api
environment:
NEXT_PUBLIC_API_BASE_URL: http://localhost:8000/api/v1
AUTH_COOKIE_NAME: ${AUTH_COOKIE_NAME:-atlas_access_token}
AUTH_COOKIE_SECURE: ${AUTH_COOKIE_SECURE:-false}
AUTH_COOKIE_SAMESITE: ${AUTH_COOKIE_SAMESITE:-lax}
MERCURY_INTERNAL_URL: ${MERCURY_INTERNAL_URL:-http://mercury-api:8000}
ports:
- "3000:3000"