From e4b412f32c6983471e37e150760b37ecd5281362 Mon Sep 17 00:00:00 2001 From: Kenzo Date: Thu, 15 May 2025 15:25:13 +0200 Subject: [PATCH] Add fly.toml --- fly.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 0000000..da6d4cd --- /dev/null +++ b/fly.toml @@ -0,0 +1,25 @@ +app = "REPLACE_ME" + +[build] + dockerfile = "Dockerfile" + +[env] + PORT = "8080" + +[[services]] + internal_port = 8080 + protocol = "tcp" + + [[services.ports]] + port = 80 + handlers = ["http"] + + [[services.ports]] + port = 443 + handlers = ["tls", "http"] + + [[services.tcp_checks]] + interval = "15s" + timeout = "2s" + grace_period = "5s" + restart_limit = 0