ecosystem.config.js 279 B

12345678910111213
  1. // PM2 configuration: https://nuxtjs.org/deployments/pm2/
  2. module.exports = {
  3. apps: [
  4. {
  5. name: 'app',
  6. exec_mode: 'cluster',
  7. instances: '1',
  8. script: './node_modules/nuxt/bin/nuxt.js',
  9. args: 'start --hostname \'0.0.0.0\' --port 3002'
  10. }
  11. ]
  12. }