-
Notifications
You must be signed in to change notification settings - Fork 6
/
fly.toml
44 lines (35 loc) · 883 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
[build]
dockerfile = "Dockerfile"
[env]
PROXY_LISTEN = "fly-global-services:5000"
PROXY_PUBLIC = "rendezvous.namespace.so"
PROXY_FRONTEND = '{"kind": "proxy_proto", "port_start": 2000, "port_end": 60000, "listen_port": 10000}'
PROXY_VALIDATE_GITHUB_OIDC = "true"
[[services]]
internal_port = 5000
protocol = "udp"
auto_stop_machines = false
auto_start_machines = false
[[services.ports]]
port = "5000"
[[services]]
internal_port = 10000
protocol = "tcp"
auto_stop_machines = false
auto_start_machines = false
[[services.ports]]
handlers = ["proxy_proto"]
start_port = 2000
end_port = 60000
[[services]]
internal_port = 10020
protocol = "tcp"
auto_stop_machines = false
auto_start_machines = false
[[services.ports]]
handlers = ["http"]
port = 80
force_https = true
[[services.ports]]
handlers = ["tls", "http"]
port = 443