若依前端项目部署
1.打包正式环境
1 2 3 4 5
| # 打包正式环境 npm run build:prod
# 打包预发布环境 npm run build:stage
|
构建打包成功之后,会在根目录生成 dist
文件夹,里面就是构建打包好的文件,通常是 ***.js
、***.css
、index.html
等静态文件。
通常情况下 dist
文件夹的静态文件发布到你的 nginx 或者静态服务器即可,其中的 index.html
是后台服务的入口页面。
2.使用nginx进行前端代理
把前端打包生成的静态文件拷贝到nginx的html目录下
下方是一个自己部署的nginx配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| worker_processes 1;
events { worker_connections 1024; }
http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65;
server { listen 70; #监听端口,修改了前端为70 server_name localhost; charset utf-8;
location / { root html/dist; #对应静态资源目录 try_files $uri $uri/ /index.html; index index.html index.htm; } location /prod-api/ { #跨域代理到后端 proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://localhost:8080/; }
error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } }
|