From 47f8899d80e9392878b593a6e9650616a48a27a0 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sat, 4 Jun 2022 19:07:29 -0400 Subject: add fly.toml --- fly.toml | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 0000000..2c7c48d --- /dev/null +++ b/fly.toml @@ -0,0 +1,41 @@ +# fly.toml file generated for peach on 2022-06-04T18:39:54-04:00 + +app = "peach" + +kill_signal = "SIGINT" +kill_timeout = 5 +processes = [] + +[env] + PEACH_PHOTON_URL = "https://photon.komoot.io" + +[experimental] + allowed_public_ports = [] + auto_rollback = true + +[[services]] + http_checks = [] + internal_port = 8151 + processes = ["app"] + protocol = "tcp" + script_checks = [] + + [services.concurrency] + hard_limit = 25 + soft_limit = 20 + type = "connections" + + [[services.ports]] + force_https = true + handlers = ["http"] + port = 80 + + [[services.ports]] + handlers = ["tls", "http"] + port = 443 + + [[services.tcp_checks]] + grace_period = "1s" + interval = "15s" + restart_limit = 0 + timeout = "2s" -- cgit v1.2.3