我现在有nuxt js应用程序,它以fork模式运行。
我已经尝试使用此生态系统文件,但无法正常工作。
module.exports = {
apps : [{
name : 'MyAppName', // App name that shows in `pm2 ls`
exec_mode : 'cluster', // enables clustering
instances : 'max', // or an integer
port: 1234,
script : './node_modules/nuxt/bin/nuxt-start', // The magic key
}]
};
是否可以在特定端口上使用群集模式运行pm2?
将pm2的文档与Nuxt.js结合起来,似乎将env变量添加到您的生态系统文件应该可以满足您的要求: