JOL/fly.toml

40 lines
702 B
TOML
Raw Permalink Normal View History

2024-05-27 23:21:14 +00:00
# fly.toml app configuration file generated for jol on 2024-05-27T19:17:39-04:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'jol'
primary_region = 'iad'
kill_signal = 'SIGTERM'
[build]
[deploy]
2024-08-25 19:56:38 +00:00
release_command = '/app/bin/migrate'
2024-05-27 23:21:14 +00:00
[env]
2024-08-27 14:28:29 +00:00
PHX_HOST = 'jess.canady.tech'
PORT = '8080'
2024-05-27 23:21:14 +00:00
[http_service]
2024-08-25 19:56:38 +00:00
internal_port = 8080
force_https = true
2024-08-25 19:59:28 +00:00
auto_stop_machines = "stop"
2024-08-25 19:56:38 +00:00
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[[http_service.checks]]
timeout = "30s"
2024-08-27 14:28:29 +00:00
grace_period = "30s"
2024-08-25 19:56:38 +00:00
[http_service.concurrency]
type = 'connections'
hard_limit = 1000
soft_limit = 1000
2024-05-27 23:21:14 +00:00
[[vm]]
2024-08-25 19:56:38 +00:00
memory = '1gb'
cpu_kind = 'shared'
cpus = 1