-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpm2.config.https.json
More file actions
43 lines (43 loc) · 990 Bytes
/
pm2.config.https.json
File metadata and controls
43 lines (43 loc) · 990 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
37
38
39
40
41
42
43
{
"apps": [
{
"name": "tl-rtc-app-super-api",
"script": "tlsuperapi.js",
"interpreter": "node",
"instances": 1,
"max_memory_restart": "500M",
"env": {
"tl_rtc_app_env_mode": "https"
},
"out_file": "./logs/tl-rtc-app-super-api.log",
"error_file": "./logs/tl-rtc-app-super-api.error.log",
"merge_logs": false
},
{
"name": "tl-rtc-app-api",
"script": "tlapi.js",
"interpreter": "node",
"instances": 1,
"max_memory_restart": "500M",
"env": {
"tl_rtc_app_env_mode": "https"
},
"out_file": "./logs/tl-rtc-app-api.log",
"error_file": "./logs/tl-rtc-app-api.error.log",
"merge_logs": false
},
{
"name": "tl-rtc-app-socket",
"script": "tlsocket.js",
"interpreter": "node",
"instances": 1,
"max_memory_restart": "500M",
"env": {
"tl_rtc_app_env_mode": "https"
},
"out_file": "./logs/tl-rtc-app-socket.log",
"error_file": "./logs/tl-rtc-app-socket.error.log",
"merge_logs": false
}
]
}