2025-10-23 08:24:17 +00:00
|
|
|
module.exports = {
|
|
|
|
|
apps: [
|
|
|
|
|
{
|
|
|
|
|
name: "next-app",
|
|
|
|
|
script: "node_modules/next/dist/bin/next",
|
|
|
|
|
args: "start -p 3000",
|
2025-10-23 14:38:54 +00:00
|
|
|
cwd: "/usr/src/app",
|
2025-10-23 08:24:17 +00:00
|
|
|
instances: "max",
|
|
|
|
|
exec_mode: "cluster",
|
|
|
|
|
env: {
|
|
|
|
|
NODE_ENV: "production"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
2025-10-23 14:38:54 +00:00
|
|
|
}
|