forked from forwardemail/free-email-forwarding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecosystem.json
46 lines (46 loc) · 1013 Bytes
/
ecosystem.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
{
"apps": [
{
"name": "smtp",
"script": "index.js",
"exec_mode": "cluster",
"instances": "max",
"env_production": {
"NODE_ENV": "production"
}
},
{
"name": "smtps",
"script": "index.js",
"exec_mode": "cluster",
"instances": "max",
"env_production": {
"NODE_ENV": "production",
"SECURE": "true",
"PORT": "465"
}
},
{
"name": "msa",
"script": "index.js",
"exec_mode": "cluster",
"instances": "max",
"env_production": {
"NODE_ENV": "production",
"SECURE": "true",
"PORT": "587"
}
}
],
"deploy": {
"production": {
"user": "deploy",
"host": ["forwardemailmx1-deploy"],
"ref": "origin/master",
"repo": "git@github.com:niftylettuce/forward-email.git",
"path": "/var/www/production",
"post-deploy":
"yarn && pm2 startOrGracefulReload ecosystem.json --env production"
}
}
}