forked from agrinman/tunnelto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fly.toml
55 lines (42 loc) · 1.03 KB
/
fly.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
# fly.toml file generated for t2-svc on 2021-03-28T21:42:37-04:00
app = "t2-old"
kill_signal = "SIGINT"
kill_timeout = 5
[env]
ALLOWED_HOSTS = "t2-svc.fly.dev,2.tunnelto.dev,t2-old.fly.dev,tunnelto.dev"
NET_PORT = 10002
BLOCKED_SUB_DOMAINS = "wormhole,dashboard,2,myapp"
RUST_LOG="tunnelto_server=debug"
TUNNEL_HOST = "tunnelto.dev"
[experimental]
private_network=true
[[services]]
internal_port = 5000
protocol = "tcp"
[services.concurrency]
hard_limit = 25
soft_limit = 20
[[services.ports]]
handlers = ["tls", "http"]
port = "10001"
[[services.http_checks]]
interval = 10000
method = "get"
path = "/health_check"
protocol = "http"
timeout = 20000
[[services]]
internal_port = 8080
protocol = "tcp"
[services.concurrency]
hard_limit = 25
soft_limit = 20
[[services.ports]]
handlers = ["tls", "http"]
port = "443"
[[services.http_checks]]
interval = 10000
method = "get"
path = "/0xDEADBEEF_HEALTH_CHECK"
protocol = "http"
timeout = 20000