本文介绍了如何在Plesk面板上部署Angle Universal(Apache)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 Plesk 面板(Apache)上运行 Angular Universal 时遇到问题:
I have problem with running Angular Universal on my Plesk panel (apache):
我已经安装了 nodejs
:
- 我要在我的本地主机上运行
npm运行build:ssr
并将dist
从本地主机复制到plesk上的httpdocs
目录. 在 - 复制了
package.json
; - 在此步骤中我应该怎么做?
httpdocs
目录上- i do
npm run build:ssr
on my localhost and copy thedist
from localhost tohttpdocs
directory on plesk. - copied
package.json
onhttpdocs
directory; - 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)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!