在特定端口上运行pm2,并使用群集模式

问题描述 投票:1回答:1

我现在有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?

nuxt.js pm2
1个回答
0
投票

将pm2的文档与Nuxt.js结合起来,似乎将env变量添加到您的生态系统文件应该可以满足您的要求:

© www.soinside.com 2019 - 2024. All rights reserved.