2 lines
336 B
JavaScript
2 lines
336 B
JavaScript
// PM2 ecosystem config
|
|
module.exports = { apps: [{ name: 'aethex-live', script: 'server.js', cwd: '/var/www/aethex-live', instances: 1, autorestart: true, watch: false, max_memory_restart: '512M', env: { NODE_ENV: 'production', PORT: 3010 }, error_file: '/var/log/aethex-live/error.log', out_file: '/var/log/aethex-live/out.log' }] };
|