-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfly.toml
More file actions
43 lines (35 loc) · 778 Bytes
/
fly.toml
File metadata and controls
43 lines (35 loc) · 778 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
42
43
# fly.toml file generated for hermes on 2023-04-16T01:23:47+02:00
app = "hermes"
kill_signal = "SIGINT"
kill_timeout = 5
primary_region = "lhr"
[deploy]
strategy = "rolling"
[experimental]
auto_rollback = true
enable_consul = true
[env]
PRIMARY_REGION = "lhr"
DATABASE_URL = "/var/lib/hermes/state.db"
ENVIRONMENT = "test"
PORT = "8081"
[[mounts]]
source = "data_machines"
destination = "/data"
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = false
auto_start_machines = false
[http_service.concurrency]
type = "requests"
soft_limit = 200
hard_limit = 250
[checks]
[checks.healthz]
type = "tcp"
grace_period = "4s"
interval = "8s"
port = 8080
timeout = "10s"
restart_limit = 3