diff options
Diffstat (limited to '')
-rw-r--r-- | demo/fly.toml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/demo/fly.toml b/demo/fly.toml new file mode 100644 index 0000000..75affba --- /dev/null +++ b/demo/fly.toml @@ -0,0 +1,35 @@ +# fly.toml file generated for lnav-demo on 2022-08-22T10:26:28-07:00 + +app = "lnav-demo" +kill_signal = "SIGINT" +kill_timeout = 5 +processes = [] + +[env] + +[experimental] + allowed_public_ports = [] + auto_rollback = true + +[[services]] + http_checks = [] + internal_port = 22 + processes = ["app"] + protocol = "tcp" + script_checks = [] + [services.concurrency] + hard_limit = 25 + soft_limit = 20 + type = "connections" + + [[services.ports]] + port = 22 + + [[services.tcp_checks]] + grace_period = "1s" + interval = "15s" + restart_limit = 0 + timeout = "2s" + +[build] +image = "lnav-demo" |