ecosystem.config.js 429 B

123456789101112131415161718192021
  1. module.exports = {
  2. apps: [
  3. {
  4. name: "novel",
  5. script: "./node_modules/.bin/next",
  6. args: "start",
  7. instances: "max",
  8. env: {
  9. NODE_ENV: "production",
  10. NODE_PORT: 3001,
  11. PORT: 3001,
  12. },
  13. watch: false,
  14. merge_logs: true,
  15. exec_mode: "cluster",
  16. max_memory_restart: "3G",
  17. instance_var: "NODE_APP_INSTANCE",
  18. restart_delay: 1000,
  19. },
  20. ],
  21. };