forked from NidukaAkalanka/Fly-io-v2ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfly.toml
49 lines (40 loc) · 976 Bytes
/
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
app = "vra2"
primary_region = "dfw"
[build]
[http_service]
internal_port = 8080
force_https = false
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
processes = ["app"]
[http_service.tls_options]
alpn = ["h2", "http/1.1"]
versions = ["TLSv1.2", "TLSv1.3"]
default_self_signed = false
[[services]]
internal_port = 8080
protocol = "tcp"
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
[[services.ports]]
handlers = ["http"]
port = 80
force_https = false
[[services.ports]]
handlers = ["tls", "http"]
port = "443"
[[services]]
internal_port = 80
protocol = "tcp"
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
[[services]]
internal_port = 7300
protocol = "udp"
[[services.ports]]
handlers = ["tls", "http"]
port = "443"
tls_options = { "alpn" = ["h2", "http/1.1"], "versions" = ["TLSv1.2", "TLSv1.3"] }