forked from serverless-dns/serverless-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fly.machines.tls.toml
73 lines (59 loc) · 1.39 KB
/
fly.machines.tls.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
app = "udns"
kill_signal = "SIGINT"
kill_timeout = 10
[build]
dockerfile = "node.Dockerfile"
[env]
# offload TLS to Fly.io's load balancers
TLS_OFFLOAD = "true"
NODE_ENV = "production"
CLOUD_PLATFORM = "fly"
# (set for machines only) node proc shuts itself after this threshold:
# on Fly, the in-memory DNS cache is evicted on process exit, hence
# more efficient to let the Machine linger for as much time affordable
MACHINES_TIMEOUT_SEC = "180"
LOG_LEVEL = "info"
[experimental]
auto_rollback = true
# DNS over HTTPS (well, h2c and http1.1)
[[services]]
internal_port = 8055
protocol = "tcp"
[services.concurrency]
hard_limit = 175
soft_limit = 150
type = "connections"
[[services.ports]]
handlers = ["tls"]
tls_options = { alpn = ["h2", "http/1.1"] }
port = 443
[[services.ports]]
handlers = ["tls"]
tls_options = { alpn = ["h2", "http/1.1"] }
port = 8055
[[services.tcp_checks]]
grace_period = "5s"
interval = "10s"
restart_limit = 3
timeout = "2s"
# DNS over TCP/TLS
[[services]]
internal_port = 10555
protocol = "tcp"
[services.concurrency]
hard_limit = 175
soft_limit = 150
type = "connections"
[[services.ports]]
# TODO: ProxyProto v2
handlers = ["tls"]
port = 853
[[services.ports]]
# TODO: ProxyProto v2
handlers = ["tls"]
port = 10555
[[services.tcp_checks]]
grace_period = "5s"
interval = "10s"
restart_limit = 3
timeout = "2s"