We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e9488 commit 2943072Copy full SHA for 2943072
1 file changed
fly.toml
@@ -8,18 +8,29 @@ primary_region = 'ams'
8
kill_signal = 'SIGINT'
9
kill_timeout = '5s'
10
11
-[experimental]
12
- auto_rollback = true
13
-
14
-[build]
15
16
-[http_service]
+[[services]]
17
internal_port = 1234
18
- force_https = true
+ protocol = "tcp"
19
auto_stop_machines = 'stop'
20
auto_start_machines = true
21
min_machines_running = 0
22
- processes = ['app']
+
+ [services.concurrency]
+ hard_limit = 25
+ soft_limit = 20
+ [[services.ports]]
23
+ handlers = ["http"]
24
+ port = "80"
25
26
27
+ handlers = ["tls", "http"]
28
+ port = "443"
29
30
+ [[services.tcp_checks]]
31
+ interval = 10000
32
+ timeout = 2000
33
34
35
[[vm]]
36
size = 'shared-cpu-1x'
0 commit comments