-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
41 lines (34 loc) · 779 Bytes
/
Copy pathfly.toml
File metadata and controls
41 lines (34 loc) · 779 Bytes
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
app = "chorus-alpha"
primary_region = "sjc"
[build]
dockerfile = "Dockerfile"
[env]
PORT = "3000"
CHORUS_MAX_AGENTS = "100"
CHORUS_MAX_BODY_BYTES = "65536"
CHORUS_RATE_LIMIT_PER_MIN = "60"
CHORUS_RATE_LIMIT_PER_KEY_MIN = "120"
CHORUS_DB_PATH = "/data/chorus.db"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = "off"
auto_start_machines = true
min_machines_running = 1
max_machines_running = 1
[http_service.concurrency]
type = "connections"
hard_limit = 150
soft_limit = 120
[[http_service.checks]]
grace_period = "10s"
interval = "30s"
method = "GET"
path = "/health"
timeout = "5s"
[mounts]
source = "chorus_data"
destination = "/data"
[[vm]]
size = "shared-cpu-2x"
memory = "2048mb"