blob: 43d18b8219a31ff9a6703377d1820d2d7c05555f (
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
34
35
36
|
# fly.toml app configuration file generated for mimi on 2024-01-30T20:17:39-05:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "mimi"
primary_region = "yyz"
kill_signal = "SIGINT"
kill_timeout = "5s"
swap_size_mb = 512
vm.size = "shared-cpu-2x"
vm.memory = 1024
[build]
image = "registry.fly.io/mimi:latest"
[[services]]
protocol = "tcp"
internal_port = 9002
processes = ["app"]
[[services.ports]]
port = 80
handlers = ["http"]
force_https = true
[[services.ports]]
port = 443
handlers = ["tls", "http"]
[[services.tcp_checks]]
interval = "15s"
timeout = "2s"
grace_period = "1s"
|