veza/config/incus/env/backend-api.env

32 lines
817 B
Bash
Raw Normal View History

# 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
# RabbitMQ (disabled - not deployed in infra)
RABBITMQ_URL=amqp://veza:password@10.10.10.10:5672/%2f
RABBITMQ_ENABLE=false
# Security
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production-min-32-chars
CORS_ALLOWED_ORIGINS=http://10.10.10.1,http://10.10.10.6,https://10.10.10.6,http://localhost
# Services
STREAM_SERVER_URL=http://10.10.10.4:3002
CHAT_SERVER_URL=http://10.10.10.3:8081
# ClamAV (disabled in Incus by default)
ENABLE_CLAMAV=false
CLAMAV_REQUIRED=false