this repo has no description
at main 34 lines 677 B view raw
1# fly.toml app configuration file generated for sitebase-web on 2026-01-13T21:16:04-06:00 2# 3# See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4# 5 6app = 'sitebase-web' 7primary_region = 'ord' 8 9[build] 10 dockerfile = "Dockerfile" 11 12[env] 13 PUBLIC_URL = "https://sitebase" 14 15[http_service] 16 internal_port = 8080 17 force_https = true 18 auto_stop_machines = true 19 auto_start_machines = true 20 min_machines_running = 0 21 max_machines = 1 22 23 [[http_service.checks]] 24 interval = '10s' 25 timeout = '2s' 26 grace_period = '5s' 27 method = 'GET' 28 path = '/' 29 30[[vm]] 31 memory = '1gb' 32 cpu_kind = 'shared' 33 cpus = 1 34 memory_mb = 1024