24 lines
813 B
Django/Jinja
24 lines
813 B
Django/Jinja
# Website URL
|
|
SITE_URL=https://infisical.futureporn.net
|
|
|
|
# Keys
|
|
# Required key for platform encryption/decryption ops
|
|
# GENERATE YOUR OWN KEY WITH `openssl rand -hex 16`
|
|
ENCRYPTION_KEY={{ lookup('dotenv', 'INFISICAL_ENCRYPTION_KEY', file='../../../../.env') }}
|
|
|
|
# JWT
|
|
# Required secrets to sign JWT tokens
|
|
# GENERATE YOUR OWN KEY WITH `openssl rand -base64 32`
|
|
AUTH_SECRET={{ lookup('dotenv', 'INFISICAL_AUTH_SECRET', file='../../../../.env') }}
|
|
|
|
# Postgres
|
|
POSTGRES_PASSWORD={{ lookup('dotenv', 'INFISICAL_POSTGRES_PASSWORD', file='../../../../.env') }}
|
|
POSTGRES_USER=infisical
|
|
POSTGRES_DB=infisical
|
|
# Do not change the next line
|
|
DB_CONNECTION_URI=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}
|
|
|
|
# Redis
|
|
# Do not change the next line
|
|
REDIS_URL=redis://redis:6379
|