ecosystem.config.js 220 B

123456789101112
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'xyy-web',
  5. port: '3018',
  6. exec_mode: 'cluster',
  7. instances: 'max',
  8. max_memory_restart: '1000M',
  9. script: './.output/server/index.mjs'
  10. }
  11. ]
  12. }