Vue-cli项目部署到Nginx
项目环境:
0. nginx使用
以windows版为例,下载niginx压缩包并解压到任意目录,双击nginx.exe
,在浏览器中访问http://localhost
,如果出现welcome to nginx!
页面则说明成功。
nginx常用命令如下:
nginx -h # 打开帮助 nginx -t # 检查配置文件是否正确 # 以下命令均要先启动nginx才能执行 nginx -s stop # 停止 nginx -s quit # 退出 nginx -s reopen # 重新启动(注意不会重新读取配置文件) nginx -s reload # 重新读取配置文件
1. 部署项目到nginx根目录
对于vue-cli创建的项目,修改vue.config.js
文件(位于项目根目录下,没有的话自行创建):
module.exports = { // 开发环境中使用的端口 devserver: { port: 8001 }, // 取消生成map文件(map文件可以准确的输出是哪一行哪一列有错) productionsourcemap: false, // 开发环境和部署环境的路径 publicpath: process.env.node_env === 'production' ? '/' : '/my/', configurewebpack: (config) => { // 增加 iview-loader config.module.rules[0].use.push({ loader: 'iview-loader', options: { prefix: false } }) // 在命令行使用 vue inspect > o.js 可以检查修改后的webpack配置文件 } }
在vue项目根目录中使用命令npm run build
创建输出文件,将dist文件夹下的所有内容复制到nginx目录下的webapp/
内(没有的话自行创建)。
修改nginx目录中的conf/nginx.conf
文件,在 http -> server 节点中,修改location节的内容:
location / { root webapp; index index.html index.htm; }
在nginx根目录使用命令nginx -s reload
即可在浏览器中通过http://localhost
访问项目。
2. 多个项目部署到nginx
有时一个nginx中放了好几个子项目,需要将不同的项目通过不同的路径来访问。
对于项目1而言,修改vue.config.js
文件的publicpath
:
publicpath: '/vue1/'
对于项目2而言,修改vue.config.js
文件的publicpath
:
publicpath: '/vue2/'
分别在vue项目根目录中使用命令npm run build
创建输出文件,将dist文件夹下的所有内容复制到nginx目录下的webapp/vue1
和webapp/vue2
内(没有的话自行创建)。
修改nginx目录中的conf/nginx.conf
文件,在 http -> server 节点中,修改location节的内容:
location /vue1 { root webapp; index index.html index.htm; } location /vue2 { root webapp; index index.html index.htm; }
在nginx根目录使用命令nginx -s reload
即可在浏览器中通过http://localhost/vue1
、http://localhost/vue2
访问项目1、项目2。
3. 端口代理
当前后端项目分别部署在同一台机器上时,由于无法使用相同的端口,故后端一般会将端口号设置成不同的值(例如8080),但是当前端向后端请求资源时还要加上端口号,未免显得麻烦,故利用可以nginx将前端的指定路径代理到后端的8080端口上。
在conf/nginx.conf
文件中增加location
:
location /api { proxy_pass http://localhost:8080/api; }
这样,当前端访问/api
路径时,实际*问的是http://localhost:8080/api
路径。
上一篇: 有关html的标签以及css属性(border、div)
下一篇: C# 枚举
推荐阅读
-
IDEA部署JavaWeb项目到Tomcat服务器的方法
-
thinkphp项目部署到Linux服务器上报错“模板不存在”如何解决
-
Maven项目打包成war包部署到Tomcat的方法
-
Asp.Net MVC3.0如何项目部署到Win7 64位系统
-
IDEA部署JavaWeb项目到Tomcat服务器的方法
-
Maven项目部署到Jboss出现Failed to create a new SAX parser
-
Vue CLI3创建项目部署到Tomcat 使用ngrok映射到外网
-
springboot项目打成war包部署到tomcat遇到的一些问题
-
JavaWeb项目部署到服务器详细步骤详解
-
Vue CLI3创建项目部署到Tomcat 使用ngrok映射到外网