Files
tiantian-system/ecosystem.config.cjs
2026-04-08 17:10:58 +08:00

19 lines
369 B
JavaScript

module.exports = {
apps: [
{
name: 'websopy-5555',
cwd: __dirname,
script: '.output/server/index.mjs',
interpreter: 'node',
node_args: ['--import', './scripts/crypto-hash-polyfill.mjs'],
env: {
NODE_ENV: 'production',
NITRO_HOST: '0.0.0.0',
NITRO_PORT: 5555,
PORT: 5555,
},
},
],
}