-
Notifications
You must be signed in to change notification settings - Fork 0
/
ecosystem.config.js
111 lines (110 loc) · 4.64 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
module.exports = {
apps: [
{
name: 'phone', // 项目名字,启动后的名字
script: './dist/main.js', // 执行的文件
cwd: './', // 根目录
args: '', // 传递给脚本的参数
watch: true, // 开启监听文件变动重启
// eslint-disable-next-line @typescript-eslint/camelcase
ignore_watch: ['node_modules', 'public', 'logs'], // 不用监听的文件
exec_mode: 'cluster',
instances: '3', // max表示最大的 应用启动实例个数,仅在 cluster 模式有效 默认为 fork
autorestart: true, // 默认为 true, 发生异常的情况下自动重启
// eslint-disable-next-line @typescript-eslint/camelcase
max_memory_restart: '4G',
// eslint-disable-next-line @typescript-eslint/camelcase
error_file: './logs/app-err.log', // 错误日志文件
// eslint-disable-next-line @typescript-eslint/camelcase
out_file: './logs/app-out.log', // 正常日志文件
// eslint-disable-next-line @typescript-eslint/camelcase
merge_logs: true, // 设置追加日志而不是新建日志
// eslint-disable-next-line @typescript-eslint/camelcase
log_date_format: 'YYYY-MM-DD HH:mm:ss', // 指定日志文件的时间格式
// eslint-disable-next-line @typescript-eslint/camelcase
min_uptime: '60s', // 应用运行少于时间被认为是异常启动
// eslint-disable-next-line @typescript-eslint/camelcase
max_restarts: 30, // 最大异常重启次数
// eslint-disable-next-line @typescript-eslint/camelcase
restart_delay: 60, // 异常重启情况下,延时重启时间
env: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
MODEL: 'service',
},
env_development: {
NODE_ENV: 'development',
MODEL: 'service',
},
// eslint-disable-next-line @typescript-eslint/camelcase
env_production: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
MODEL: 'service',
},
// eslint-disable-next-line @typescript-eslint/camelcase
env_test: {
// 环境参数,当前为测试环境
NODE_ENV: 'test',
},
},
{
name: 'check', // 项目名字,启动后的名字
script: './dist/main.js', // 执行的文件
cwd: './', // 根目录
args: '', // 传递给脚本的参数
watch: true, // 开启监听文件变动重启
// eslint-disable-next-line @typescript-eslint/camelcase
ignore_watch: ['node_modules', 'public', 'logs'], // 不用监听的文件
instances: '1', // max表示最大的 应用启动实例个数,仅在 cluster 模式有效 默认为 fork
autorestart: true, // 默认为 true, 发生异常的情况下自动重启
// eslint-disable-next-line @typescript-eslint/camelcase
max_memory_restart: '4G',
// eslint-disable-next-line @typescript-eslint/camelcase
error_file: './logs/app-err.log', // 错误日志文件
// eslint-disable-next-line @typescript-eslint/camelcase
out_file: './logs/app-out.log', // 正常日志文件
// eslint-disable-next-line @typescript-eslint/camelcase
merge_logs: true, // 设置追加日志而不是新建日志
// eslint-disable-next-line @typescript-eslint/camelcase
log_date_format: 'YYYY-MM-DD HH:mm:ss', // 指定日志文件的时间格式
// eslint-disable-next-line @typescript-eslint/camelcase
min_uptime: '60s', // 应用运行少于时间被认为是异常启动
// eslint-disable-next-line @typescript-eslint/camelcase
max_restarts: 30, // 最大异常重启次数
// eslint-disable-next-line @typescript-eslint/camelcase
restart_delay: 60, // 异常重启情况下,延时重启时间
env: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
MODEL: 'check',
},
env_development: {
NODE_ENV: 'development',
MODEL: 'check',
},
// eslint-disable-next-line @typescript-eslint/camelcase
env_production: {
// 环境参数,当前指定为生产环境
NODE_ENV: 'production',
MODEL: 'check',
},
// eslint-disable-next-line @typescript-eslint/camelcase
env_test: {
// 环境参数,当前为测试环境
NODE_ENV: 'test',
},
},
],
deploy: {
production: {
user: 'root',
host: '39.108.99.86',
ref: 'origin/master',
repo: '[email protected]:repo.git',
path: '/var/www/AnJiaMallServer',
'post-deploy':
'npm install && npm run build && pm2 reload ecosystem.config.js --env production',
},
},
};