-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathecosystem.config.js
58 lines (58 loc) · 1.71 KB
/
ecosystem.config.js
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
56
57
58
module.exports = {
apps: [
{
name: 'remnawave-api',
script: 'dist/src/main.js',
watch: false,
instances: process.env.API_INSTANCES || 1,
merge_logs: true,
exec_mode: 'cluster',
instance_var: 'INSTANCE_ID',
env_development: {
NODE_ENV: 'development',
INSTANCE_TYPE: 'api',
},
env_production: {
NODE_ENV: 'production',
INSTANCE_TYPE: 'api',
},
namespace: 'api',
},
{
name: 'remnawave-scheduler',
script: 'dist/src/bin/scheduler/scheduler.js',
watch: false,
instances: 1, // DO NOT SCALE
exec_mode: 'fork',
merge_logs: true,
instance_var: 'INSTANCE_ID',
env_development: {
NODE_ENV: 'development',
INSTANCE_TYPE: 'scheduler',
},
env_production: {
NODE_ENV: 'production',
INSTANCE_TYPE: 'scheduler',
},
namespace: 'scheduler',
},
{
name: 'remnawave-jobs',
script: 'dist/src/bin/processors/processors.js',
watch: false,
instances: 1,
exec_mode: 'cluster',
merge_logs: true,
instance_var: 'INSTANCE_ID',
env_development: {
NODE_ENV: 'development',
INSTANCE_TYPE: 'processor',
},
env_production: {
NODE_ENV: 'production',
INSTANCE_TYPE: 'processor',
},
namespace: 'jobs',
},
],
};