ecosystem.config.js 222 B

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