Update fly.toml

This commit is contained in:
2026-01-25 19:05:19 -08:00
committed by GitHub
parent 24834a2fed
commit ddc22a573b

View File

@@ -1,5 +1,5 @@
# fly.toml
app = "postconvert" app = "postconvert"
primary_region = "sjc" primary_region = "sjc"
[build] [build]
@@ -8,11 +8,16 @@ primary_region = "sjc"
[http_service] [http_service]
internal_port = 8080 internal_port = 8080
force_https = true force_https = true
auto_start_machines = true auto_start_machines = true
auto_stop_machines = true auto_stop_machines = true
min_machines_running = 0 min_machines_running = 0
max_machines_running = 1 max_machines_running = 10
concurrency = { soft_limit = 1, hard_limit = 1 }
# Allow 2 concurrent connections so /health can succeed while /convert is running.
# We enforce "only 1 conversion at a time" in server.js.
concurrency = { soft_limit = 2, hard_limit = 2 }
grace_period = "30s" grace_period = "30s"
[[http_service.checks]] [[http_service.checks]]
@@ -20,4 +25,4 @@ primary_region = "sjc"
interval = "15s" interval = "15s"
method = "GET" method = "GET"
path = "/health" path = "/health"
timeout = "2s" timeout = "5s"