ecosystem.config.cjs 270 B

1234567891011121314
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'gami',
  5. port: '3000',
  6. exec_mode: 'cluster',
  7. instances: 'max',
  8. script: './.output/server/index.mjs',
  9. env: {
  10. NUXT_APP_CDN_URL: 'https://public.gami.vip/gami-web/',
  11. },
  12. },
  13. ],
  14. }