website/ecosystem.config.js

12 lines
222 B
JavaScript
Raw Normal View History

2023-05-27 21:59:35 +03:00
module.exports = {
apps: [
{
name: 'My Website',
exec_mode: 'cluster',
instances: 'max', // Or a number of instances
script: './node_modules/nuxt/bin/nuxt.js',
args: 'start'
}
]
}