Blame view

ecosystem.config.js 169 Bytes
root committed
1 2 3 4 5 6
module.exports = {
  apps: [
    {
      name: 'strapiapp',
      script: 'npm',
      args: 'start',
7 8
      instances : 7,
      exec_mode : "cluster",
root committed
9 10 11 12 13
    },
  ],
};