-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.prod.small.example
More file actions
53 lines (49 loc) · 1.91 KB
/
Copy pathenv.prod.small.example
File metadata and controls
53 lines (49 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Production Environment - Small Server Configuration
#
# =============================================================================
# SERVER SPECIFICATIONS
# =============================================================================
# CPU: 2 cores
# RAM: 4GB
# Storage: 20GB+ SSD recommended
#
# CAPACITY ESTIMATES (Conservative)
# =============================================================================
# Concurrent Users: 50-200 users
# Team Size: 5-20 people (admins, security team, end users)
# Request Rate: ~100-500 requests/minute
# Database Size: Up to 10GB
#
# USE CASES
# =============================================================================
# - Small startups and teams
# - Development and staging environments
# - Proof of concept deployments
# - Low to moderate traffic applications
# - Testing and demonstration
#
# MONTHLY COST ESTIMATE
# =============================================================================
# DigitalOcean: ~$24/month (2GB RAM droplet)
# AWS Lightsail: ~$20/month (2GB RAM instance)
# Linode: ~$24/month (2GB RAM instance)
#
# =============================================================================
# RESOURCE LIMITS - Small Server
# =============================================================================
# Note: MySQL, API, and Web have no limits - they can use available server resources
# Only Redis and Horizon are constrained to prevent resource exhaustion
# Redis Resources (Constrained)
REDIS_CPU_LIMIT=0.5
REDIS_MEMORY_LIMIT=256M
REDIS_CPU_RESERVATION=0.1
REDIS_MEMORY_RESERVATION=64M
REDIS_MAXMEMORY=256mb
# Horizon Resources (Constrained)
HORIZON_CPU_LIMIT=0.5
HORIZON_MEMORY_LIMIT=256M
HORIZON_CPU_RESERVATION=0.1
HORIZON_MEMORY_RESERVATION=64M
# =============================================================================
# Copy remaining configuration from env.docker.example
# =============================================================================