21 lines
465 B
JavaScript
21 lines
465 B
JavaScript
module.exports = {
|
|
apps: [{
|
|
name: 'harheimertc',
|
|
script: 'npm',
|
|
args: 'run start',
|
|
cwd: '/var/www/harheimertc',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3100
|
|
},
|
|
error_file: '/var/log/pm2/harheimertc-error.log',
|
|
out_file: '/var/log/pm2/harheimertc-out.log',
|
|
log_file: '/var/log/pm2/harheimertc-combined.log',
|
|
time: true
|
|
}]
|
|
}
|