1

试图将我的项目上传到 openlitespeed。然而,遇到困难。

基本节点设置是:

const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello World form node js app.js\n');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

看看如何包含以下模块:

var http = require('http');
var dt = require('./myfirstmodule');

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.write("The date and time are currently: " + dt.myDateTime());
  res.end();
}).listen(8080);

但是,我基本上可以在本地主机上运行我的 Nuxtjs 项目。

可能的预期结果是什么:

在带有启动文件的 VPS 上运行 Nuxtjs 应用程序,该启动文件已在 openlitespeed 上提供服务。

在这里检查过,但没有关于 openlitespeeed 部署的信息:https ://nuxtjs.org/docs/2.x/deployment/nginx-proxy

4

1 回答 1

1

嗨,经过一番研究,这很容易:

https://nuxtjs.org/docs/2.x/deployment/deployment-pm2

将包含这些代码的名为生态系统.config.js 的文件复制到 Nuxt 的根文件夹:

module.exports = {
    apps: [
      {
        name: 'NuxtAppName',
        exec_mode: 'cluster',
        instances: 'max', // Or a number of instances
        script: './node_modules/nuxt/bin/nuxt.js',
        args: 'start'
      }
    ]
  }

在你的 Linux 上运行:

killall node
cd /usr/local/lsws/serverclient/client
pm2 start

好走

于 2021-03-01T15:36:29.677 回答