aethex-live-v2/ecosystem.config.js
2026-03-21 08:25:17 +00:00

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' }] };