alby-hub/fly.toml
Roland 1817d10301
fix: do not exceed max fly timeout (5 minutes) (#1658)
* fix: do not exceed max fly timeout (5 minutes)

* chore: update kill timeout comment
2025-08-28 22:22:56 +07:00

40 lines
913 B
TOML

# fly.toml app configuration file generated for nwc on 2024-01-30T12:30:13+01:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'nwc'
primary_region = 'lax'
swap_size_mb = 2048
# Add a kill timeout longer than LDK node shutdown timeout to ensure Alby Hub gracefully shuts down
kill_timeout = 300
[build]
image = 'ghcr.io/getalby/hub:latest'
[env]
DATABASE_URI = '/data/nwc.db'
LDK_LOG_LEVEL = '3'
LOG_LEVEL = '4'
WORK_DIR = '/data'
[[mounts]]
source = 'nwc_data'
destination = '/data'
initial_size = '1'
auto_extend_size_threshold = 80
auto_extend_size_increment = "1GB"
auto_extend_size_limit = "5GB"
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[[vm]]
cpu_kind = 'shared'
cpus = 1
memory = '512mb'