cratw/fly.toml
2023-04-27 19:57:57 +02:00

30 lines
434 B
TOML

app = "cratw"
kill_signal = "SIGINT"
kill_timeout = 5
[experimental]
cmd = "./cratw"
[[services]]
internal_port = 3000
protocol = "tcp"
[services.concurrency]
hard_limit = 25
soft_limit = 20
[[services.ports]]
handlers = ["http"]
port = "80"
force_https = true
[[services.ports]]
handlers = ["tls", "http"]
port = "443"
[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
port = "3000"
restart_limit = 6
timeout = "2s"