diff options
Diffstat (limited to 'fly.toml')
-rw-r--r-- | fly.toml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/fly.toml b/fly.toml index d9d84da..b4914d5 100644 --- a/fly.toml +++ b/fly.toml @@ -24,20 +24,20 @@ primary_region = "ams" auto_stop_machines = false auto_start_machines = true min_machines_running = 3 - processes = ["app"] + processes = [ "app" ] [http_service.concurrency] type = "requests" hard_limit = 20000 soft_limit = 15000 -[http_service.http_options] - h2_backend = true -[http_service.http_options.response] - pristine = true -[[http_service.checks]] - grace_period = "15s" - interval = "30s" - method = "GET" - timeout = "1s" - path = "/health" - [http_service.checks.headers] - Host = "fly-internal" + [http_service.http_options] + h2_backend = true + [http_service.http_options.response] + pristine = true + [[http_service.checks]] + grace_period = "15s" + interval = "30s" + method = "GET" + timeout = "1s" + path = "/health" + [http_service.checks.headers] + Host = "fly-internal" |