22 lines
674 B
Text
22 lines
674 B
Text
# Veza Stream Server — Environment Template
|
|
# Copy to .env and fill with real values. Never commit .env.
|
|
|
|
# Security (required, min 32 chars)
|
|
SECRET_KEY=your-secret-key-minimum-32-characters-long
|
|
JWT_SECRET=your-jwt-secret-minimum-32-characters-long
|
|
|
|
# Internal API key for /internal/jobs/transcode (backend must send X-Internal-API-Key header)
|
|
INTERNAL_API_KEY=
|
|
|
|
# Database
|
|
DATABASE_URL=postgres://user:password@host:5432/veza?sslmode=disable
|
|
|
|
# Message queue (optional)
|
|
RABBITMQ_URL=amqp://user:password@host:5672/%2f
|
|
|
|
# CORS — use specific origins in production, never *
|
|
ALLOWED_ORIGINS=https://veza.fr,https://app.veza.fr
|
|
|
|
# Storage
|
|
AUDIO_DIR=audio
|
|
STREAM_PORT=3002
|