Skip to content

Commit a5b74be

Browse files
committed
fix ram and add health check
1 parent 048a962 commit a5b74be

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

server/fly.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,16 @@ min_machines_running = 0
2323
processes = ['app']
2424
idle_timeout = '10m'
2525

26+
[[http_service.checks]]
27+
interval = "1s"
28+
timeout = "1s"
29+
grace_period = "5s"
30+
method = "GET"
31+
path = "/health"
32+
2633
[[vm]]
2734
size = 'performance-2x'
28-
memory = 1024
35+
memory = 4096
2936

3037
[metrics]
3138
port = 9091

0 commit comments

Comments
 (0)