立即注册 找回密码

QQ登录

只需一步,快速开始

查看: 1135|回复: 0

[Linux主机系统教程] 前端将项目部署到服务器(Nginx)的完整步骤

[复制链接]

53

主题

0

回帖

992

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
992
发表于 2023-2-22 15:11:05 | 显示全部楼层 |阅读模式
道勤网-数据www.daoqin.net

亲注册登录道勤网-可以查看更多帖子内容哦!(包涵精彩图片、文字详情等)请您及时注册登录-www.daoqin.net

您需要 登录 才可以下载或查看,没有账号?立即注册

x

我们在会开发项目的同时,也应该了解一下前端是如何部署项目的;

一、准备环境
1、服务器或者虚拟机(后端已经搭建好的,这里就不讲述如何搭建服务器了)
2、Xshell 和 Xftp --> 存放静态文件和操作服务器
3、Windows系统
Xshell:是一个强大的安全终端模拟软件,可以在Windows界面下用来访问远端不同系统下的服务器。(作用就是用来连接远程服务器的)
Xftp:是一个功能强大的SFTP、FTP 文件传输软件。(作用是存放静态文件和上传静态资源)

二、安装Nginx

使用Xshell连接服务器,既然想要在服务器上面放静态资源,像html,js等,就需要安装静态资源服务器。静态资源服务器有Apache和Nginx,这里我们选用nginx。

1、 安装Nginx依赖
  1. yum install -y pcre pcre-devel
复制代码
yum install -y zlib zlib-develyum install gcc-c++yum install -y openssl openssl-devel
2、下载Nginxwget -c https://nginx.org/download/nginx-0.1.18.tar.gz3、解压下载好的Nginx 压缩包

找到安装包Nginx安装路径,并在目录下进行解压。

tar -zxvf nginx-0.1.18.tar.gz

进入解压好的Nginx目录下:

cd nginx-0.1.18
4、编译安装Nginx./configure --with-http_ssl_modulemakemake install5、启动Nginx服务

找到安装目录:

whereis nginx

启动服务:

/usr/local/nginx/sbin/nginx

或者进入Nginx目录下启动:

./nginx
三、操作步骤1、使用Xshell连接服务器

输入服务器名称、地址、端口号,连接成功后会让你输入账号和密码,账号一般是默认的root。
001.jpg

在Xshell中启动Nginx:

  1. 1、查找安装的路径:whereis nginx;
  2. 2、执行Nginx启动命令:/usr/local/nginx/sbin/nginx;
  3. 3、查看服务运行状态:ps -ef | grep nginx;
  4. 4、停止服务:kill 进程号; /usr/local/nginx/sbin/nginx -stop
  5. 5、重启服务:/usr/local/nginx/sbin/nginx -s reopen
复制代码
2、上传静态资源文件

连接Xftp,进行文件传输。服务器的根目录是 /root ,这里可以创建一个自己的项目文件目录进行静态资源文件的存放。直接把打包后的dist文件放在目标目录即可。

3、 配置Nginx

在Xhell中进行Nginx的配置:

配置命令:vim /usr/local/nginx/conf/nginx.conf(vim + nginx目录)

按insert键进入编辑模式,说明以及配置文件如下:

  1. #全局块 :配置影响nginx全局的指令。一般有运行nginx服务器的用户组,nginx进程pid存放路径,日志存放路径,配置文件引入,允许生成worker process数等。
  2. #user  nobody/root; #配置用户或者组,默认为nobody root
  3. user root;
  4. worker_processes  1;  #允许生成的进程数,默认是1

  5. #error_log  logs/error.log;
  6. #error_log  logs/error.log  notice;
  7. #error_log  logs/error.log  info;

  8. #pid        logs/nginx.pid; #指定nginx进程运行文件存放地址


  9. events {  #event块:配置影响nginx服务器或与用户的网络连接。有每个进程的最大连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个网路连接,开启多个网络连接序列化等。
  10.     accept_mutex on;   #设置网路连接序列化,防止惊群现象发生,默认为on
  11.     multi_accept on;  #设置一个进程是否同时接受多个网络连接,默认为off
  12.     #use epoll;      #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
  13.     worker_connections  1024;    #最大连接数,默认为512
  14. }


  15. http { #http块:可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。如文件引入,mime-type定义,日志自定义,是否使用sendfile传输文件,连接超时时间,单连接请求数等。
  16.     include       mime.types; #文件扩展名与文件类型映射表
  17.     default_type  application/octet-stream;  #默认文件类型,默认为text/plain、octet-stream未知文件类型

  18.     #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
  19.     #                  '$status $body_bytes_sent "$http_referer" '
  20.     #                  '"$http_user_agent" "$http_x_forwarded_for"';

  21.     #access_log  logs/access.log  main;

  22.     sendfile        on; #开启高效文件传输模式
  23.     #tcp_nopush     on;

  24.     #keepalive_timeout  0;
  25.     keepalive_timeout  65;#保持请求活跃时间

  26.     #gzip  on;
  27.         #error_page 404 https://www.baidu.com; #错误页
  28.        
  29.         #http全局块
  30.     server {  #server块:配置虚拟主机的相关参数,一个http中可以有多个server。
  31.                 keepalive_requests 120; #单连接请求上限次数。
  32.         listen       80; #监听端口
  33.         server_name  127.0.0.1;#监听地址-->设置对应监听的域名xxx.com  www.baidu.com

  34.         #charset koi8-r;

  35.         #access_log  logs/host.access.log  main;
  36.                
  37.                 #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。
  38.         location / { #location块:配置请求的路由,以及各种页面的处理情况。
  39.                         #root path;  #根目录
  40.                         #index vv.txt;  #设置默认页
  41.             root   html;
  42.             index  index.html index.htm;
  43.                         #proxy_pass  http://mysvr;  #请求转向mysvr 定义的服务器列表-->可以填写自己的服务器地址
  44.                         #proxy_read_timeout 150; 代理连接超时时间
  45.                         #deny 127.0.0.1;  #拒绝的ip
  46.                         #allow 172.18.5.54; #允许的ip
  47.         }

  48.         #error_page  404              /404.html;

  49.         # redirect server error pages to the static page /50x.html
  50.         #
  51.         error_page   500 502 503 504  /50x.html;
  52.         location = /50x.html {
  53.             root   html;
  54.         }

  55.         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  56.         #
  57.         #location ~ \.php$ {
  58.         #    proxy_pass   http://127.0.0.1;
  59.         #}

  60.         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  61.         #
  62.         #location ~ \.php$ {
  63.         #    root           html;
  64.         #    fastcgi_pass   127.0.0.1:9000;
  65.         #    fastcgi_index  index.php;
  66.         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
  67.         #    include        fastcgi_params;
  68.         #}

  69.         # deny access to .htaccess files, if Apache's document root
  70.         # concurs with nginx's one
  71.         #
  72.         #location ~ /\.ht {
  73.         #    deny  all;
  74.         #}
  75.     }


  76.     # another virtual host using mix of IP-, name-, and port-based configuration
  77.     #
  78.     #server {
  79.     #    listen       8000;
  80.     #    listen       somename:8080;
  81.     #    server_name  somename  alias  another.alias;

  82.     #    location / {
  83.     #        root   html;
  84.     #        index  index.html index.htm;
  85.     #    }
  86.     #}


  87.     # HTTPS server
  88.     #
  89.     #server {
  90.     #    listen       443 ssl;
  91.     #    server_name  localhost;

  92.     #    ssl_certificate      cert.pem;
  93.     #    ssl_certificate_key  cert.key;

  94.     #    ssl_session_cache    shared:SSL:1m;
  95.     #    ssl_session_timeout  5m;

  96.     #    ssl_ciphers  HIGH:!aNULL:!MD5;
  97.     #    ssl_prefer_server_ciphers  on;

  98.     #    location / {
  99.     #        root   html;
  100.     #        index  index.html index.htm;
  101.     #    }
  102.     #}
  103. # 测试配置
  104.     server {
  105.         listen       8777;
  106.         server_name  http://127.0.0.1/;

  107.         gzip on; # 开启Gzip
  108.         # gzip_static on; # 开启静态文件压缩 这句话不要
  109.         gzip_min_length  1k; # 不压缩临界值,大于1K的才压缩
  110.         gzip_buffers     4 16k;
  111.         gzip_comp_level 5;
  112.         gzip_types     application/javascript application/x-javascript application/xml application/xml+rss application/x-httpd-php text/plain text/javascript text/css image/jpeg image/gif image/png; # 进行压缩的文件类型
  113.         gzip_http_version 1.1;
  114.         gzip_vary on;
  115.         gzip_proxied   expired no-cache no-store private auth;
  116.         gzip_disable   "MSIE [1-6]\.";

  117.         location / {
  118.             root   /home/myProject/dist; # root表示根目录,这里的路径需要与Xftp上传的静态资源文件的路径一致
  119.             index  index.html index.htm;
  120.             try_files $uri $uri/ /index.html;
  121.         }

  122.         location @router {
  123.             rewrite ^.*$ /index.html last;
  124.         }
  125.     }
  126. }
复制代码

修改完成后:wq 保存退出。

4、 重启Nginx服务
  1. 重启命令:/usr/local/nginx/sbin/nginx -s reopen
复制代码
最后在浏览器中输入:http://127.0.0.1:8777/即可访问部署成功的项目;
333.jpg
道勤主机提供365天*24小时全年全天无休、实时在线、零等待的售后技术支持。竭力为您免费处理您在使用道勤主机过程中所遇到的一切问题! 如果您是道勤主机用户,那么您可以通过QQ【792472177】、售后QQ【59133755】、旺旺【诠释意念】、微信:q792472177免费电话、后台提交工单这些方式联系道勤主机客服! 如果您不是我们的客户也没问题,点击页面最右边的企业QQ在线咨询图标联系我们并购买后,我们为您免费进行无缝搬家服务,让您享受网站零访问延迟的迁移到道勤主机的服务!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

道勤网- 推荐内容!上一条 /2 下一条

!jz_fbzt! !jz_sgzt! !jz_xgzt! 快速回复 !jz_fhlb! !jz_lxwm! !jz_gfqqq!

关于我们|手机版|小黑屋|地图|【道勤网】-www.daoqin.net 软件视频自学教程|免费教程|自学电脑|3D教程|平面教程|影视动画教程|办公教程|机械设计教程|网站设计教程【道勤网】 ( 皖ICP备15000319号-1 )

GMT+8, 2024-5-3 17:52

Powered by DaoQin! X3.4 © 2016-2063 Dao Qin & 道勤科技

快速回复 返回顶部 返回列表