gpt4 book ai didi

angularjs - 在 Nginx 上部署 AngularJS 应用程序

转载 作者:行者123 更新时间:2023-12-02 07:24:37 24 4
gpt4 key购买 nike

我正在尝试在 Nginx 上部署使用 Yoeman 生成的 AngularJS 应用程序,这是我的 nginx 配置:

server {
server_name 0.0.0.0;
listen 8080;
root /home/gestAngular/app;
index index.html;

location / {
try_files $uri $uri/ /index.html;
}
}

但是当我启动 nginx 时,我的应用程序发现依赖项。

我的目录 gestAngular 看起来像这样:

-gestAngular

---App

---bower_components

---node_modules

---test

---dist

它是用 yoeman angular generator 生成的。

知道如何让 nginx 识别我的依赖项(bower 组件)的位置吗?

最佳答案

它找不到依赖项,因为您已将根文件夹设置为文件夹 app,它无法访问 bower 组件。

相反,您应该使用 gulp 或 grunt “构建”您的应用程序到 dist 文件夹并将该文件夹部署到您的服务器:

root /home/gestAngular/dist;

关于angularjs - 在 Nginx 上部署 AngularJS 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34616261/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com