Files
qihuo/ecosystem.config.cjs
T
2026-06-24 11:42:15 +08:00

24 lines
554 B
JavaScript

module.exports = {
apps: [
{
name: "qihuo",
script: "app.py",
cwd: "/opt/qihuo",
interpreter: "/opt/qihuo/venv/bin/python",
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: "300M",
env: {
NODE_ENV: "production",
LANG: "zh_CN.UTF-8",
LC_ALL: "zh_CN.UTF-8",
LC_CTYPE: "zh_CN.UTF-8",
},
error_file: "/opt/qihuo/logs/pm2-error.log",
out_file: "/opt/qihuo/logs/pm2-out.log",
time: true,
},
],
};