all repos — homestead @ f8b009dda349bcfffb930be4e73269d8a3b71204

Code for my website

format toml files with taplo

Alan Pearce
commit

f8b009dda349bcfffb930be4e73269d8a3b71204

parent

3702557111a38384668aaddbe8f777b0665feaa1

2 files changed, 20 insertions(+), 13 deletions(-)

jump to
M fly.tomlfly.toml
@@ -24,20 +24,20 @@ force_https = true
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"
A taplo.toml
@@ -0,0 +1,7 @@
+#:schema taplo://taplo.toml + +[formatting] + indent_tables = true + indent_entries = true + array_auto_collapse = false + compact_arrays = false