-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
44 lines (35 loc) · 805 Bytes
/
fly.toml
File metadata and controls
44 lines (35 loc) · 805 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
44
app = 'metavert-cms'
primary_region = 'ord'
[deploy]
strategy = "immediate"
[build]
[env]
PORT = "8082"
[http_service]
internal_port = 8082
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[http_service.concurrency]
type = "connections"
hard_limit = 25
soft_limit = 20
# Health check using dedicated endpoint
[[http_service.checks]]
interval = "10s"
timeout = "5s"
grace_period = "5s"
path = "/health"
[http_service.http_options]
idle_timeout = 300
response_header_timeout = 300
[[vm]]
memory = '512mb'
cpu_kind = 'shared'
cpus = 1
[mounts]
source = "lightcms_data"
destination = "/app/content"
initial_size = "1gb"