There was an error while loading. Please reload this page.
1 parent 64551ca commit beb9049Copy full SHA for beb9049
1 file changed
fly.toml
@@ -21,15 +21,27 @@ cpus = 1
21
[[services]]
22
internal_port = 8080
23
protocol = "tcp"
24
-min_machines_running = 2
+min_machines_running = 1
25
processes = ['app']
26
-
27
-[[services.ports]]
28
-handlers = ["tls"]
29
-port = 443
30
-tls_options = { "alpn" = ["h2"] }
31
+ [[services.ports]]
+ handlers = ["tls"]
+ port = 443
+ tls_options = { "alpn" = ["h2"] }
32
[services.concurrency]
33
type = "connections"
34
hard_limit = 1000
35
soft_limit = 500
+
+[[services]]
36
+ internal_port = 8081
37
+ protocol = "tcp"
38
+ min_machines_running = 1
39
+ processes = ['app']
40
41
+ handlers = ["tls", "http"]
42
+ port = 442
43
44
+ [services.concurrency]
45
+ type = "connections"
46
+ hard_limit = 1000
47
+ soft_limit = 500
0 commit comments