1 Star 0 Fork 0

吕炎/next-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ecosystem.config.js 849 Bytes
一键复制 编辑 原始数据 按行查看 历史
吕炎 提交于 2024-09-06 09:27 . feat: 国际化配置
module.exports = {
apps: [
{
name: 'next-app',
script: './server.js',
args: 'start',
exec_mode: 'cluster', // 或 "fork"
instances: 1, // 应用的实例数
merge_logs: true, //合并日志
pmx: true, // 启用 PM2 高级功能
autorestart: true, // 默认为 true,允许 PM2 自动重启应用
max_restarts: 15, // 在 15 分钟内允许的最大重启次数
restart_delay: 3000, // 重启之间的延迟时间为 3000 毫秒(3 秒)
port: 6011,
env: {
NODE_ENV: 'development'
},
env_production: {
NODE_ENV: 'production'
}
}
]
};
// 启动
// pm2 start ecosystem.config.js --env production (development)
// 重启
// pm2 restart next-app
// 查看所有服务
// pm2 list
// 查看日志
// pm2 logs or pm2 logs [name]
// 查看每个应用占用情况
// pm2 monit
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/lv_yan-a/next-app.git
git@gitee.com:lv_yan-a/next-app.git
lv_yan-a
next-app
next-app
master

搜索帮助