-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.prod.medium.example
More file actions
54 lines (50 loc) · 2.07 KB
/
env.prod.medium.example
File metadata and controls
54 lines (50 loc) · 2.07 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
53
# Production Environment - Medium Server Configuration (RECOMMENDED)
#
# =============================================================================
# SERVER SPECIFICATIONS
# =============================================================================
# CPU: 4 cores
# RAM: 8GB
# Storage: 50GB+ SSD recommended
#
# CAPACITY ESTIMATES (Conservative)
# =============================================================================
# Concurrent Users: 200-1000 users
# Team Size: 20-100 people (multiple departments, distributed teams)
# Request Rate: ~500-2000 requests/minute
# Database Size: Up to 50GB
#
# USE CASES
# =============================================================================
# - Growing startups and SMEs
# - Standard production deployments
# - Multi-department organizations
# - Moderate to high traffic applications
# - Organizations with 20-100 employees
# - Companies with active PAM requirements
#
# MONTHLY COST ESTIMATE
# =============================================================================
# DigitalOcean: ~$48/month (4GB RAM droplet) to ~$96/month (8GB RAM)
# AWS Lightsail: ~$40/month (4GB RAM instance) to ~$80/month (8GB RAM)
# Linode: ~$48/month (4GB RAM instance) to ~$96/month (8GB RAM)
#
# =============================================================================
# RESOURCE LIMITS - Medium Server (DEFAULT VALUES)
# =============================================================================
# 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=1
REDIS_MEMORY_LIMIT=512M
REDIS_CPU_RESERVATION=0.25
REDIS_MEMORY_RESERVATION=128M
REDIS_MAXMEMORY=512mb
# Horizon Resources (Constrained)
HORIZON_CPU_LIMIT=1
HORIZON_MEMORY_LIMIT=512M
HORIZON_CPU_RESERVATION=0.25
HORIZON_MEMORY_RESERVATION=128M
# =============================================================================
# Copy remaining configuration from env.docker.example
# =============================================================================