live_beats/fly.toml
2021-11-18 10:40:05 -05:00

46 lines
807 B
TOML

app = "livebeats"
kill_signal = "SIGTERM"
kill_timeout = 5
processes = []
[deploy]
release_command = "/app/entry eval LiveBeats.Release.migrate"
[env]
IPV6 = 1
URL_HOST = "livebeats.fly.dev"
[mounts]
source="data"
destination="/app/uploads"
[experimental]
allowed_public_ports = []
auto_rollback = true
[[services]]
http_checks = []
internal_port = 4000
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 2500
soft_limit = 2000
type = "connections"
[[services.ports]]
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services.tcp_checks]]
grace_period = "30s" # allow some time for startup
interval = "15s"
restart_limit = 0
timeout = "2s"