Files
qihuo/ecosystem.config.cjs
T
2026-06-25 18:04:17 +08:00

23 lines
519 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,
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,
},
],
};