ecosystem.config.js 626 B

123456789101112131415161718
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'bitforum-frontend',
  5. script: 'server.js', // standalone 빌드 결과물
  6. cwd: 'H:/IIS/bitforum', // 배포 경로
  7. instances: 1,
  8. autorestart: true, // 크래시 시 자동 재시작
  9. watch: false, // 파일 변경 감지 끔 (운영)
  10. max_memory_restart: '1G', // 메모리 1G 초과 시 재시작
  11. env: {
  12. NODE_ENV: 'production',
  13. PORT: 3000,
  14. HOSTNAME: '0.0.0.0'
  15. }
  16. }
  17. ]
  18. }