guanghulab/pool-agent/ecosystem.config.js

25 lines
797 B
JavaScript
Raw Normal View History

/**
*
* 铸渊 · 算力汇聚调度池 · PM2生态配置
*
*/
module.exports = {
apps: [{
name: 'pool-agent',
script: './index.js',
cwd: __dirname,
instances: 1,
exec_mode: 'fork',
env: {
POOL_AGENT_PORT: '3960',
POOL_POLL_INTERVAL: '30000',
NODE_ENV: 'production'
},
max_restarts: 10,
restart_delay: 5000,
watch: false,
log_date_format: 'YYYY-MM-DD HH:mm:ss Z'
}]
};