forked from moltis-org/moltis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
36 lines (30 loc) · 756 Bytes
/
fly.toml
File metadata and controls
36 lines (30 loc) · 756 Bytes
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
[build]
image = 'ghcr.io/moltis-org/moltis:0.10.11'
[env]
MOLTIS_BEHIND_PROXY = 'true'
MOLTIS_CONFIG_DIR = '/data/config'
MOLTIS_DATA_DIR = '/data'
MOLTIS_DEPLOY_PLATFORM = 'flyio'
MOLTIS_NO_TLS = 'true'
[processes]
app = '--bind 0.0.0.0 --port 8080 --no-tls'
[[mounts]]
destination = '/data'
source = 'moltis_data'
[http_service]
auto_start_machines = true
auto_stop_machines = 'stop'
force_https = true
internal_port = 8080
min_machines_running = 0
processes = ['app']
[http_service.concurrency]
hard_limit = 250
soft_limit = 200
type = 'connections'
[[http_service.checks]]
grace_period = '10s'
interval = '30s'
method = 'GET'
path = '/health'
timeout = '5s'