32 lines
675 B
1
# fly.toml app configuration file generated for thoughts-and-tidbits on 2025-02-01T10:53:39-05:00
2
#
3
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4
#
5
6
app = "thoughts-and-tidbits"
7
primary_region = "ord"
8
kill_signal = "SIGTERM"
9
10
[build]
11
12
[env]
13
PHX_HOST = "thoughts-and-tidbits.fly.dev"
14
PORT = "8080"
15
16
[http_service]
17
internal_port = 8080
18
force_https = true
19
auto_stop_machines = true
20
auto_start_machines = true
21
min_machines_running = 0
22
processes = ["app"]
23
24
[http_service.concurrency]
25
type = "connections"
26
hard_limit = 1000
27
soft_limit = 1000
28
29
[[vm]]
30
cpu_kind = "shared"
31
cpus = 1
32
memory_mb = 1024
33