-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathfly.toml
More file actions
31 lines (25 loc) · 546 Bytes
/
fly.toml
File metadata and controls
31 lines (25 loc) · 546 Bytes
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
app = "filippo-whoami"
[deploy]
strategy = "bluegreen"
[metrics]
port = 9091
path = "/metrics"
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = "suspend"
auto_start_machines = true
min_machines_running = 0
[[services]]
internal_port = 2222
protocol = "tcp"
auto_stop_machines = "suspend"
auto_start_machines = true
min_machines_running = 0
[[services.ports]]
port = 22
[[services.tcp_checks]]
grace_period = "1s"
interval = "10s"
restart_limit = 6
timeout = "2s"