# ZephyrFS Production Configuration # Core Configuration NODE_ENV=production PORT=3000 HOST=0.0.0.0 # ZephyrFS Node Configuration ZEPHYRFS_NODE_URL=http://zephyrfs-node:8080 ZEPHYRFS_NODE_TIMEOUT=30000 # Security JWT_SECRET=your-super-secure-jwt-secret-here CORS_ORIGINS=https://your-domain.com,https://api.your-domain.com # File Upload Limits MAX_FILE_SIZE=1073741824 # 1GB in bytes MAX_CONCURRENT_UPLOADS=10 # Logging LOG_LEVEL=info # Storage Paths DATA_PATH=/opt/zephyrfs/data SSL_CERTS_PATH=/opt/zephyrfs/ssl # Monitoring GRAFANA_PASSWORD=admin # Performance Settings CACHE_MAX_SIZE=104857600 # 100MB CACHE_TTL=300000 # 5 minutes # Database (if using external DB) # DATABASE_URL=postgresql://user:pass@localhost:5432/zephyrfs # Redis (if using external cache) # REDIS_URL=redis://localhost:6379 # Email (for notifications) # SMTP_HOST=smtp.gmail.com # SMTP_PORT=587 # SMTP_USER=your-email@gmail.com # SMTP_PASS=your-app-password # S3 Backup (optional) # S3_BUCKET=zephyrfs-backups # S3_ACCESS_KEY=your-access-key # S3_SECRET_KEY=your-secret-key # S3_REGION=us-east-1