You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/ecosystem.config.js

25 lines
497 B

module.exports = {
apps: [{
name: "wikijs",
cwd: "/home/wiki/wikijs",
script: "server",
interpreter: "node",
args: "",
instances: 1,
exec_mode: "fork",
autorestart: true,
watch: false,
env: {
NODE_ENV: "development"
},
env_production: {
NODE_ENV: "production"
},
max_memory_restart: "512M",
error_file: "/var/log/pm2/wikijs.err.log",
out_file: "/var/log/pm2/wikijs.out.log",
merge_logs: true,
time: true
}]
}