Files
soul-yongping/ecosystem.config.cjs

20 lines
530 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* PM2 配置:用于 standalone 部署的服务器
* 启动方式node server.js不要用 npm start / next startstandalone 无 next 命令)
* 使用pm2 start ecosystem.config.cjs 或 PORT=3006 pm2 start server.js --name soul
*/
module.exports = {
apps: [
{
name: 'soul',
script: 'server.js',
interpreter: 'node',
env: {
NODE_ENV: 'production',
PORT: 3006,
},
cwd: undefined, // 以当前目录为准,部署时在 /www/wwwroot/soul
},
],
};