-
Notifications
You must be signed in to change notification settings - Fork 0
/
fly.toml
47 lines (36 loc) · 889 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
# fly.toml file generated for chisoonnumber on 2021-01-20T16:30:56+02:00
app = "chisoonnumber"
kill_signal = "SIGINT"
kill_timeout = 5
[build.args]
NODE_ENV_ARG="production"
[[statics]]
guest_path = "/app/client"
url_prefix = "/client"
[env]
CORS_ORIGIN = '["https://chisoonnumber.fly.dev","https://barakplasma.github.io"]'
NODE_ENV = "production"
PORT = "8080"
[[services]]
internal_port = 8080
protocol = "tcp"
[services.concurrency]
hard_limit = 200
soft_limit = 100
[[services.ports]]
handlers = ["http"]
port = "80"
[[services.ports]]
handlers = ["tls", "http"]
port = "443"
[[services.tcp_checks]]
interval = 10000
timeout = 2000
[[services.http_checks]]
interval = 10000
grace_period = "5s"
method = "get"
path = "/healthcheck"
protocol = "http"
timeout = 2000
tls_skip_verify = false