From 6f8998c2060d5a02d73b044039edf915f6ab5d53 Mon Sep 17 00:00:00 2001 From: 7836246 Date: Tue, 5 Mar 2024 09:34:05 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E5=A2=9E=E5=8A=A0=20pm2=E5=90=AF?= =?UTF-8?q?=E5=8A=A8=E6=96=87=E4=BB=B6=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E7=AB=AF=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ecosystem.config.cjs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ecosystem.config.cjs diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs new file mode 100644 index 0000000..869524e --- /dev/null +++ b/ecosystem.config.cjs @@ -0,0 +1,11 @@ +module.exports = { + apps: [ + { + name: 'NuxtWhois', + port: '3001', + exec_mode: 'cluster', + instances: 'max', + script: './.output/server/index.mjs' + } + ] +}