ecosystem.config.js 221 B

1234567891011
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'hfyWebsite',
  5. exec_mode: 'cluster',
  6. instances: '10', // Or a number of instances
  7. script: './node_modules/nuxt/bin/nuxt.js',
  8. args: 'start'
  9. }
  10. ]
  11. }