- Set AUTH_TRUST_HOST to true in env.example for improved security. - Updated NextAuth configuration to trust the host during authentication.
18 lines
551 B
Plaintext
18 lines
551 B
Plaintext
# Database
|
|
DATABASE_URL="postgresql://user:password@localhost:5432/mirrormatch?schema=public"
|
|
|
|
# NextAuth
|
|
NEXTAUTH_URL="http://localhost:3000"
|
|
NEXTAUTH_SECRET="your-secret-key-here-generate-with-openssl-rand-base64-32"
|
|
AUTH_TRUST_HOST=true
|
|
|
|
# Email Configuration (for production)
|
|
SMTP_HOST="smtp.example.com"
|
|
SMTP_PORT="587"
|
|
SMTP_USER="your-email@example.com"
|
|
SMTP_PASSWORD="your-email-password"
|
|
SMTP_FROM="MirrorMatch <noreply@mirrormatch.com>"
|
|
|
|
# In development, emails will be logged to console or use Ethereal
|
|
# No SMTP config needed for dev mode
|