IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> 服务器用nginx部署环境挂载vue项目 -> 正文阅读

[系统运维]服务器用nginx部署环境挂载vue项目

所涉及到的环境与工具:

  1. shell
  2. nginx
  3. xftp
  4. linux环境
  5. 服务

服务器使用nginx部署挂载vue项目

这里vue项目打包命令:npm run build 会生成一个dist文件

一、安装nginx

yum install -y nginx

**注意:**安装成功后:默认的默认的网页路径为:、usr/share/nginx/html
默认的配置文件为/etc/nginx/nginx.conf

二、开启端口80和443

前提:先打开防火墙 systemctl start firewalld service

  • firewall-cmd --reload 重启防火墙

  • firewall-cmd – state 参看防火墙状态

  • systemctl stop firewakkd service 关闭防火墙

  • firewall-cmd --add-port=80/tcp --permanebnt 开启80端口

  • firewall -cmd – permanent --zone = public --add-service=http

  • firewall -cmd – permanent --zone = public --add-service=https

    开启后记得重启防火墙

三、修改nginx配置文件

前提工作:

在这里我是用linux在服务器下新建自己的目录,利用xftp将打包好的dist文件放在我的目录下面:/home/lzx/dist_text

配置文件修改

输入命令:cd/usr/local/nginx/conf
在该目录下找到nginx.conf

配置文件:



#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

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

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server{
        listen  5510; //自己定义的端口 注意:此处端口别用已经在使用的不然会报错,我在此处已经踩坑,没注意到有个端口已经使用过
        server_name  **********;//服务器ip 或者域名

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root  /home/lzx/dist_text/dist;//vue项目打包的文件路径
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

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

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

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

修改完毕后ESC :wq保存退出
重启nginx :systemctl restart nginx
一定记得要重启nginx才能生效
然后去浏览器输入自己的ip+端口验证是否成功!

nginx基本命令

  • systemctl start nginx 启动
  • systemctl restart nginx 重启
  • systemctl stio nginx 关闭
  • systemctl status nginx 参看状态
  • systemctl enable nginx 开启开机自动开启
  • systemctl disable nginx 关闭开机自动开启
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-05-08 08:30:52  更:2022-05-08 08:32:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 18:40:38-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码