ecosystem.config.js 423 B

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