Files
dotfiles/org-agenda-api/configs/kat/fly.toml

33 lines
679 B
TOML
Raw Normal View History

# fly.toml - Fly.io deployment configuration
# See https://fly.io/docs/reference/configuration/
app = "kat-org-agenda-api"
primary_region = "ord"
# Image is built from flake and passed via deploy.sh --image flag
[http_service]
internal_port = 80
force_https = true
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
# Give services time to start (nginx + emacs)
[http_service.concurrency]
type = "connections"
hard_limit = 25
soft_limit = 20
[[http_service.checks]]
grace_period = "10s"
interval = "30s"
timeout = "5s"
method = "GET"
path = "/health"
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 512