forked from serverless-dns/serverless-dns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fly.tls.toml
68 lines (56 loc) · 1.28 KB
/
fly.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
app = ""
kill_signal = "SIGINT"
kill_timeout = 10
[build]
dockerfile = "node.Dockerfile"
[env]
# offload TLS to Fly.io's load balancers
TLS_OFFLOAD = "true"
DENO_ENV = "production"
NODE_ENV = "production"
CLOUD_PLATFORM = "fly"
LOG_LEVEL = "info"
[experimental]
auto_rollback = true
# DNS over HTTPS (well, h2c and http1.1)
[[services]]
http_checks = []
internal_port = 8055
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 575
soft_limit = 500
type = "connections"
[[services.ports]]
handlers = ["tls"]
tls_options = { alpn = ["h2", "http/1.1"] }
port = 443
[[services.tcp_checks]]
# account for delay due to blocklists download that
# happens on process startup: plugin.js:systemReady
grace_period = "15s"
interval = "30s"
restart_limit = 6
timeout = "2s"
# DNS over TCP/TLS
[[services]]
http_checks = []
internal_port = 10555
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 575
soft_limit = 500
type = "connections"
[[services.ports]]
# TODO: ProxyProto v2
handlers = ["tls"]
port = 853
[[services.tcp_checks]]
# account for delay due to blocklists download that
# happens on process startup: plugin.js:systemReady
grace_period = "15s"
interval = "30s"
restart_limit = 6
timeout = "2s"