From 40023826c145bc204f19bd2a4947864c10c9327a Mon Sep 17 00:00:00 2001 From: Anderson Date: Sat, 21 Mar 2026 08:25:17 +0000 Subject: [PATCH] add ecosystem.config.js --- ecosystem.config.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 ecosystem.config.js diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..1da1077 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,2 @@ +// 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' }] };