-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfly.json
53 lines (47 loc) · 867 Bytes
/
fly.json
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
{
"app": "shine-app",
"primary_region": "cdg",
"build": {
"image": "%DOCKER_IMAGE%"
},
"services": [
{
"protocol": "tcp",
"internal_port": 80,
"auto_stop_machines": true,
"auto_start_machines": true,
"min_machines_running": 0,
"ports": [
{
"port": 80,
"handlers": ["http"],
"force_https": true
},
{
"port": 443,
"handlers": ["tls", "http"]
}
],
"concurrency": {
"hard_limit": 25,
"soft_limit": 20
},
"tcp_checks": [
{
"interval": "10s",
"timeout": "2s"
}
]
}
],
"metrics": [
{
"port": 80,
"path": "identity/api/telemetry/metrics"
},
{
"port": 80,
"path": "builder/api/telemetry/metrics"
}
]
}