15 lines
374 B
JavaScript
15 lines
374 B
JavaScript
|
|
module.exports = {
|
||
|
|
apps: [{
|
||
|
|
name: "guanghu-deployment-receiver",
|
||
|
|
script: "receiver.js",
|
||
|
|
cwd: "/opt/zhuyuan/fifth-domain/server-tools/deployment-receiver",
|
||
|
|
instances: 1,
|
||
|
|
autorestart: true,
|
||
|
|
max_memory_restart: "128M",
|
||
|
|
env: {
|
||
|
|
NODE_ENV: "production",
|
||
|
|
DEPLOY_RECEIVER_CONFIG: "/etc/guanghu-deployment-receiver/config.json"
|
||
|
|
}
|
||
|
|
}]
|
||
|
|
};
|