15 lines
599 B
Plaintext
15 lines
599 B
Plaintext
# Infisical Secret Management - Environment Variables
|
|
# Copy to .env and fill in values before deploying
|
|
|
|
# Database password (generate a strong random password)
|
|
INFISICAL_DB_PASS=change-me-strong-password
|
|
|
|
# Encryption key for secrets at rest (generate with: openssl rand -hex 16)
|
|
INFISICAL_ENCRYPTION_KEY=change-me-generate-with-openssl-rand-hex-16
|
|
|
|
# Auth secret for JWT tokens (generate with: openssl rand -base64 32)
|
|
INFISICAL_AUTH_SECRET=change-me-generate-with-openssl-rand-base64-32
|
|
|
|
# SMTP password for email notifications (noreply@rmail.online)
|
|
SMTP_PASSWORD=your-mailcow-noreply-password
|