blob: 37373fd6250ff9deb9463c0e500faf5565c6ef93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# fly.toml file generated for xesite-patreon-saasproxy on 2023-09-27T19:47:18-04:00
app = "xesite-patreon-saasproxy"
kill_signal = "SIGINT"
kill_timeout = 5
[mounts]
source = "data"
destination = "/data"
[env]
DATA_DIR = "/data"
[build]
image = "ghcr.io/xe/site/patreon:latest"
[[services]]
internal_port = 80
processes = ["app"]
protocol = "tcp"
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
[services.concurrency]
hard_limit = 300
soft_limit = 250
type = "connections"
[[services.ports]]
handlers = ["http"]
port = 80
|