diff options
author | Alan Pearce | 2024-05-25 12:49:10 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-25 12:49:10 +0200 |
commit | 547de640576c71bed54bc1ae3c9d9b224df9cc41 (patch) | |
tree | 3c01510300478b4f91c5e698907698246fff7f4b /fly.toml | |
parent | c8b38ee1bf5aa59799074db85eb549a0e3f541e4 (diff) | |
download | website-547de640576c71bed54bc1ae3c9d9b224df9cc41.tar.lz website-547de640576c71bed54bc1ae3c9d9b224df9cc41.tar.zst website-547de640576c71bed54bc1ae3c9d9b224df9cc41.zip |
format toml files with taplo
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" |