2026-01-13 18:47:57 +00:00
|
|
|
# Veza Backend API Environment Configuration
|
|
|
|
|
# Edit this file to configure your backend-api service
|
|
|
|
|
|
|
|
|
|
# Application
|
|
|
|
|
APP_ENV=production
|
|
|
|
|
APP_PORT=8080
|
|
|
|
|
LOG_LEVEL=INFO
|
|
|
|
|
LOG_DIR=/var/log/veza
|
|
|
|
|
|
|
|
|
|
# Database
|
|
|
|
|
DATABASE_URL=postgresql://veza:password@10.10.10.10:5432/veza?sslmode=disable
|
|
|
|
|
|
|
|
|
|
# Redis
|
|
|
|
|
REDIS_URL=redis://10.10.10.10:6379
|
|
|
|
|
REDIS_ENABLE=true
|
|
|
|
|
|
2026-01-15 18:26:53 +00:00
|
|
|
# RabbitMQ (disabled - not deployed in infra)
|
2026-01-13 18:47:57 +00:00
|
|
|
RABBITMQ_URL=amqp://veza:password@10.10.10.10:5672/%2f
|
2026-01-15 18:26:53 +00:00
|
|
|
RABBITMQ_ENABLE=false
|
2026-01-13 18:47:57 +00:00
|
|
|
|
|
|
|
|
# Security
|
|
|
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production-min-32-chars
|
2026-01-15 18:26:53 +00:00
|
|
|
CORS_ALLOWED_ORIGINS=http://10.10.10.1,http://10.10.10.6,https://10.10.10.6,http://localhost
|
2026-01-13 18:47:57 +00:00
|
|
|
|
|
|
|
|
# Services
|
|
|
|
|
STREAM_SERVER_URL=http://10.10.10.4:3002
|
|
|
|
|
CHAT_SERVER_URL=http://10.10.10.3:8081
|
2026-01-15 18:26:53 +00:00
|
|
|
|
|
|
|
|
# ClamAV (disabled in Incus by default)
|
|
|
|
|
ENABLE_CLAMAV=false
|
|
|
|
|
CLAMAV_REQUIRED=false
|