当前位置:   article > 正文

前端项目上线

前端项目上线

目录

1项目打包

2本地服务器部署

2.1具体操作步骤

2.2解决刷新 404 问题 

2.3请求无法发送问题

3nginx 服务器部署

3.2nginx 配置代理练习

安装nginx

nginx部署启动项目 

3.3nginx 部署前端项目 

4云服务器部署 

本地资源上传 

配置服务器与nginx 


1项目打包

  • ●我们开发用的脚手架其实就是一个微型服务器,用于:支撑开发环境、运行代理服务器等。
  • ●打包完的文件中不存在:.vue、.jsx、.less 等文件,而是:html、css、js等。
  • ●打包后的文件,不再借助脚手架运行,而是需要部署到服务器上运行。
  • ●打包前,请务必梳理好前端项目的ajax封装(请求前缀、代理规则等)。

2本地服务器部署

2.1具体操作步骤

安装express

前提是电脑已经安装了node

新建一个文件夹,执行npm init -y命令,生成package.json,再执行npm add express命令,下载express,成功之后如下图。

每次修改代码时,都要重新启动服务器,比较麻烦,所以提出了热部署(nodemon),安装命令:npm i nodemon -g

最后完整代码如下:

  1. // 引入express
  2. const express = require('express')
  3. // 配置端口号
  4. const PORT = 8088
  5. // 创建一个app服务实例
  6. const app = express()
  7. // 配置静态资源
  8. app.use(express.static(__dirname + '/public'))
  9. // 绑定端口监听
  10. app.listen(PORT, () => {
  11. console.log(`本地服务器启动成功,http://localhost:${PORT}`)
  12. })

执行命令:nodemon .server.js,浏览器输入http://localhost:8088会出现这个页面: 

2.2解决刷新 404 问题 

问题分析:前端项目的路由,通常分为两种工作模式,分别为:
1hash模式

hash 值又称锚点,通常用于指定网页中的某个位置,例如下面的网址:
央视网_世界就在眼前,其中的#SUBD1605080062959435就是 hash 值,hash 值只在客户端(如浏览器)中使用,是不会带给服务器的,所以使用 hash 模式时,不存在刷新 404 问题。

2history模式 

istory 去掉了URL中的#号,可以让应用的URL看起来更美观,带来的问题就是刷新时,会将前端路由携带给后端,而后端没有对应资源的匹配,就出现了 404 问题。

解决方案一:将前端路由器工作模式改为 hash 模式 —— 不太推荐。

解决方案二:让服务器在收到未配置的GET路由时,都返回index.html即可。 

方案二最终其实是把 url 中的 path,交给了前端路由去处理,具体配置如下

  1. app.get('*',(req,res)=>{
  2. res.sendFile(__dirname + '/public/index.html')
  3. })

也可以借助connect-history-api-fallback中间件完成配置

  1. const history = require('connect-history-api-fallback');
  2. app.use(history());
  3. // 配置静态资源
  4. app.use(express.static(__dirname + '/public'))

使用connect-history-api-fallback可以让配置更灵活,比如/login临时不需要作为前端路由处理,就可以按照如下方式配置
 

  1. app.use(history({
  2. verbose:false,
  3. rewrites:[
  4. { from: /^\/login.*$/, to: (context) => context.parsedUrl.path },
  5. ]
  6. }))

2.3请求无法发送问题

问题分析:脱离脚手架后,就没有了代理服务器,无法转发请求到【提供数据】的服务器。
如何解决?—— 在 Node 服务器中借助http-proxy-middleware中间件配置代理,具体配置如下

  1. // 引入createProxyMiddleware
  2. const { createProxyMiddleware } = require('http-proxy-middleware')
  3. // 配置代理中间件
  4. app.use('/dev', createProxyMiddleware({
  5. target: 'http://sph-h5-api.atguigu.cn',
  6. changeOrigin: true,
  7. pathRewrite: {
  8. '^/dev': ''
  9. }
  10. }))

3nginx 服务器部署

Nginx(发音为“engine-x”)是一款高性能的 HTTP 服务器和反向代理服务器,同时也是一个 IMAP/POP3/SMTP 代理服务器。Nginx 最初由 Igor Sysoev 编写,于 2004 年发布。它以其高性能、高稳定性、丰富的功能集和低系统资源消耗而闻名,主要功能有:

  • 1反向代理
  • 2负载均衡
  • 3静态内容服务
  • 4HTTP/2 支持
  • 5SSL/TLS 支持
  • 6高速缓存

3.2nginx 配置代理练习

安装nginx

  • 安装nginx-mac
$ brew install nginx  # mac安装nginx
  • 查看版本-mac
$ nginx -v  # 查看版本
  • 查看nginx-mac
$ brew info nginx #查看nginx

 

注意:mac安装可能遇到的问题

image.png

遇到某个包发生错误,直接使用brew安装这个包,再安装nginx

  1. $ brew install pcre2 # 安装出错的包
  2. $ brew install nginx # 安装nginx

image.png

 遇到这个错误,可以直接执行该命令,安装对应的工具,再安装nginx

  1. $ xcode-select --install # 安装对应工具
  2. $ brew install nginx # 安装nginx

nginx部署启动项目 

  • mac查看nginx的相关目录
brew info nginx #查看nginx
 

mac-nginx安装目录-/opt/homebrew/Cellar/nginx/1.23.3
mac-配置文件路-/opt/homebrew/etc/nginx/nginx.conf 

  • 将打包的文件放置到安装目录/html下

  • mac-启动服务命令
$ /opt/homebrew/Cellar/nginx/1.23.3/bin/nginx #启动命令
 
  • mac-停止服务
$ /opt/homebrew/Cellar/nginx/1.23.3/bin/nginx -s stop  #停止命令
 
  • mac重启服务
$ /opt/homebrew/Cellar/nginx/1.23.3/bin/nginx -s reload  #重启

 

注意: mac版本的nginx的默认端口为8080

3.3nginx 部署前端项目 

整体思路:让nginx充当两个角色,既是 静态内容服务器,又是代理服务器。

修改nginx配置如下,注意nginx的根目录最好不是 C 盘

  1. # 配置nginx根目录
  2. location / {
  3. root D:\dist;
  4. index index.html index.htm;
  5. }
  6. # 配置代理
  7. location /dev/ {
  8. # 设置代理目标
  9. proxy_pass http://sph-h5-api.atguigu.cn/;
  10. }

2修改前端项目,让所有请求都转发给 /dev,随后重新打包

  1. const request = axios.create({
  2. baseURL:'/dev',
  3. timeout:10000
  4. })

随后直接访问nginx服务器即可,例如 nginx如果运行在8099端口,则访问:

http://localhost:8099

随后会遇到刷新404问题,追加nginx配置来解决

  1. # 配置nginx根目录
  2. location / {
  3. root D:\dist;
  4. index index.html index.htm;
  5. try_files $uri $uri/ /index.html; # 解决刷新404
  6. }
  7. # 配置代理
  8. location /dev/ {
  9. # 设置代理目标
  10. proxy_pass http://sph-h5-api.atguigu.cn/;
  11. }

加上这两个“/”就剔除掉了dev 

4云服务器部署 

  • 我们可以在云服务器上借助nginx完成部署,大致流程与本地nginx部署一致
  • 1关于购买云服务器,可选择:阿里云、腾讯云等。
  • 2关于操作系统,看个人习惯,Ubuntu、CentOs、RedHat、都不错。
  • 3购买完成后记得重置密码
  • 4linux 远程操作软件:Xshell、Xftp

5具体配置如下:

●给服务器安装nginx

yum install nginx

将打包后的前端资源放在:/var/sph文件夹中。
●使用Xftp配置服务器的 nginx,修改文件:/etc/nginx/nginx.config

  1. # For more information on configuration, see:
  2. # * Official English Documentation: http://nginx.org/en/docs/
  3. # * Official Russian Documentation: http://nginx.org/ru/docs/
  4. user nginx;
  5. worker_processes auto;
  6. error_log /var/log/nginx/error.log;
  7. pid /run/nginx.pid;
  8. # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
  9. include /usr/share/nginx/modules/*.conf;
  10. events {
  11. worker_connections 1024;
  12. }
  13. http {
  14. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  15. '$status $body_bytes_sent "$http_referer" '
  16. '"$http_user_agent" "$http_x_forwarded_for"';
  17. access_log /var/log/nginx/access.log main;
  18. sendfile on;
  19. tcp_nopush on;
  20. tcp_nodelay on;
  21. keepalive_timeout 65;
  22. types_hash_max_size 2048;
  23. include /etc/nginx/mime.types;
  24. default_type application/octet-stream;
  25. # Load modular configuration files from the /etc/nginx/conf.d directory.
  26. # See http://nginx.org/en/docs/ngx_core_module.html#include
  27. # for more information.
  28. include /etc/nginx/conf.d/*.conf;
  29. server {
  30. listen 80 default_server;
  31. listen [::]:80 default_server;
  32. server_name _;
  33. root /usr/share/nginx/html;
  34. # Load configuration files for the default server block.
  35. include /etc/nginx/default.d/*.conf;
  36. location / {
  37. root /var/sph;
  38. index index.html index.htm;
  39. try_files $uri $uri/ /index.html; # 解决刷新404
  40. }
  41. # 配置代理
  42. location /dev/ {
  43. # 设置代理目标
  44. proxy_pass http://sph-h5-api.atguigu.cn/;
  45. }
  46. error_page 404 /404.html;
  47. location = /40x.html {
  48. }
  49. error_page 500 502 503 504 /50x.html;
  50. location = /50x.html {
  51. }
  52. }
  53. }

本地资源上传 

将打包好的文件上传到远程服务器,我们这里可以使用FinalShell,比较简单

首先打开FinalShell,点击新建,然后输入主机地址,点击连接,接着根据提示输入用户(默认是root)、密码,如下图。

接下来把你需要上传的文件直接拖入到远程目录下就可以上传。

这里我把我的打包文件放在了/var/sph这个目录下,大家可以自己选择(建议不要放在root文件下面,会有权限的问题

配置服务器与nginx 

 下载nginx

yum install nginx

查看nginx的版本

nginx -v

查看nginx的安装位置

/etc/nginx

nginx配置

找到nginx目录下的conf/nginx.conf文件,之前在本地怎么配置的,远程也是一样的~

nginx新增对外开放端口方法

这里我以阿里云服务器为例,进入首页后打开控制台,找到服务器实例,点击安全组,如下图。

点击管理规则,在入方向这里进行端口的配置 

此时再去通过浏览器访问,就可以正常访问了

 

直接启动nginx

service nginx start 
 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/659355
推荐阅读
相关标签
  

闽ICP备14008679号