-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfly.toml
More file actions
55 lines (47 loc) · 1.16 KB
/
fly.toml
File metadata and controls
55 lines (47 loc) · 1.16 KB
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
app = "flet-controls-gallery"
[build]
dockerfile = "Dockerfile"
[env]
FLET_SERVER_PORT = "8080"
FLET_FORCE_WEB_SERVER = "true"
FLET_SESSION_TIMEOUT = "600"
MEM_DIAG = "0"
MEM_DIAG_INTERVAL_SEC = "60"
MEM_DIAG_TRACE_INTERVAL_SEC = "300"
MEM_DIAG_TRACE_FRAMES = "10"
MEM_DIAG_TRACE_TOP = "10"
MEM_DIAG_CONTROL_SCAN_MAX_NODES = "15000"
MEM_DIAG_COLLECT_ON_SAMPLE = "1"
MEM_DIAG_CONTROL_SCAN = "1"
MEM_DIAG_GC_OBJECTS = "0"
MEM_DIAG_COLLECT_GEN2_ON_SAMPLE = "1"
MEM_DIAG_TYPE_HIST = "0"
MEM_DIAG_TYPE_HIST_INTERVAL_SEC = "300"
MEM_DIAG_TYPE_HIST_TOP = "30"
MALLOC_ARENA_MAX = "2"
MALLOC_TRIM_THRESHOLD_ = "131072"
[experimental]
allowed_public_ports = []
auto_rollback = true
[[services]]
http_checks = []
internal_port = 8080
processes = ["app"]
protocol = "tcp"
script_checks = []
[services.concurrency]
hard_limit = 250
soft_limit = 200
type = "connections"
[[services.ports]]
force_https = true
handlers = ["http"]
port = 80
[[services.ports]]
handlers = ["tls", "http"]
port = 443
[[services.tcp_checks]]
grace_period = "1s"
interval = "15s"
restart_limit = 0
timeout = "2s"