Files
login-v2/ecosystem.config.cjs
ThienPhamVan 3a2e16cf19 Base Login
2026-03-25 10:06:01 +07:00

11 lines
214 B
JavaScript

module.exports = {
apps: [
{
name: 'cms',
exec_mode: 'cluster',
instances: 'max', // Or a number of instances
script: './node_modules/nuxt/bin/nuxt.js',
args: 'start'
}
]
}