27 lines
661 B
Bash
27 lines
661 B
Bash
# 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
|
|
RABBITMQ_URL=amqp://veza:password@10.10.10.10:5672/%2f
|
|
RABBITMQ_ENABLE=true
|
|
|
|
# Security
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production-min-32-chars
|
|
CORS_ALLOWED_ORIGINS=http://10.10.10.1,http://localhost
|
|
|
|
# Services
|
|
STREAM_SERVER_URL=http://10.10.10.4:3002
|
|
CHAT_SERVER_URL=http://10.10.10.3:8081
|