本文介绍了如何在Plesk面板上部署Angle Universal(Apache)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Plesk 面板(Apache)上运行 Angular Universal 时遇到问题:

I have problem with running Angular Universal on my Plesk panel (apache):

我已经安装了 nodejs :

  1. 我要在我的本地主机上运行 npm运行build:ssr 并将 dist 从本地主机复制到plesk上的 httpdocs 目录.
  2. httpdocs 目录上
  3. 复制了 package.json
  4. 在此步骤中我应该怎么做?
  1. i do npm run build:ssr on my localhost and copy the dist from localhost to httpdocs directory on plesk.
  2. copied package.json on httpdocs directory;
  3. in this step what i should do ?

推荐答案

-确保在文档根目录"中选择目录中的浏览器文件夹.

-make sure in your "Document Root" to choose the browser folder in dist.

-在您的服务器中.如果出现以下情况,请删除此内容:

-in your server.ts REMOVE this if condition:

if (moduleFilename === __filename || moduleFilename.includes('iisnode')) {
  run();
}

并将其替换为:

run();

然后从plesk GUI重新启动您的node.js应用

then restart your node.js app again from the plesk GUI

这篇关于如何在Plesk面板上部署Angle Universal(Apache)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 21:01