summaryrefslogtreecommitdiffstats
path: root/fly.toml
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2022-06-04 19:07:29 -0400
committersiddharth <s@ricketyspace.net>2022-06-04 19:07:29 -0400
commit47f8899d80e9392878b593a6e9650616a48a27a0 (patch)
tree218fe0ef9e8914462de148eeaf83d124c9d9fe6a /fly.toml
parent09bef3bdb72723dc4205863abcef4e611ad0c78b (diff)
add fly.toml
Diffstat (limited to 'fly.toml')
-rw-r--r--fly.toml41
1 files changed, 41 insertions, 0 deletions
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"