-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (20 loc) · 1.32 KB
/
.env.example
File metadata and controls
26 lines (20 loc) · 1.32 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
# This component requires 2 instances per region to function properly
# Enter the instances to serve as delivery notes, separated by commas
# These instances should be configured with GTM to receive client traffic
DELIVERY=cust-env-regionA.harperdbcloud.com,cust-env-regionB.harperdbcloud.com,cust-env-regionC.harperdbcloud.com
# Enter the instances to serve as render workers, separated by commas
# The instances in each region should NOT receive client traffic
WORKERS=cust-env-regionD.harperdbcloud.com,cust-env-regionE.harperdbcloud.com,cust-env-regionF.harperdbcloud.com
# Select one instance of WORKERS to be Scheduler for job queue
# The code will handle excluding the Scheduler from rendering jobs
SCHEDULER=cust-env-regionD.harperdbcloud.com
# Select default refresh interval for pages in milliseconds (e.g. 86400000 = 24 hours)
# This is used when a page does not specify a refresh interval
REFRESH_INTERVAL=86400000
# Select default eviction period for pages not accessed in days (e.g. 30 days)
# This determines when pages are removed from the cache and not refreshed if not accessed
# Also, jobs older than this will be removed from job queue history.
EVICTION_PERIOD=30
# Whether to serve stale content while revalidating in the background
# Set to true to allow or false to force on-demand page refresh (default true)
ALLOW_STALE=true