Skip to content

Commit 4ea11bf

Browse files
committed
Add fly.toml
1 parent afb5567 commit 4ea11bf

1 file changed

Lines changed: 44 additions & 0 deletions

File tree

fly.toml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# fly.toml file generated for dots on 2022-12-06T20:50:37+06:00
2+
3+
app = "dots"
4+
kill_signal = "SIGINT"
5+
kill_timeout = 5
6+
processes = []
7+
8+
[build]
9+
builder = "heroku/buildpacks:20"
10+
11+
[env]
12+
PORT = "8080"
13+
NAMESERVERS = "8.8.8.8,8.8.4.4"
14+
15+
[experimental]
16+
allowed_public_ports = []
17+
auto_rollback = true
18+
19+
[[services]]
20+
http_checks = []
21+
internal_port = 8080
22+
processes = ["app"]
23+
protocol = "tcp"
24+
script_checks = []
25+
26+
[services.concurrency]
27+
hard_limit = 25
28+
soft_limit = 20
29+
type = "connections"
30+
31+
[[services.ports]]
32+
force_https = true
33+
handlers = ["http"]
34+
port = 80
35+
36+
[[services.ports]]
37+
handlers = ["tls", "http"]
38+
port = 443
39+
40+
[[services.tcp_checks]]
41+
grace_period = "1s"
42+
interval = "15s"
43+
restart_limit = 0
44+
timeout = "2s"

0 commit comments

Comments
 (0)