CentOS 安装Nginx并部署vue项目


  1. 安装

    yum install nginx
    
  2. 配置nginx

    • 设置开机启动

      systemctl enable nginx
      
    • 启动服务

      systemctl start nginx
      
    • 停止服务

      systemctl stop nginx
      
    • 重启服务

      systemctl restart nginx
      
    • 修改配置后热重载

      systemctl reload nginx
      
  3. nginx常用目录

    路径 説明
    /etc/nginx/ 保存Nginx设置文件的目录
    /etc/nginx/nginx.conf 主配置文件
    /var/log/nignx/ 日志文件目录
    /usr/share/nginx/html/ 对外公开的html
    /etc/nginx/conf.d/default.conf 默认配置文件 (该配置文件被nginx.conf所引用)
  4. 部署vue项目到nginx

    • 编译项目

      npm run build
      
    • 将dist目录复制到Linux服务器

    • 修改nginx.conf配置文件

      img

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/282989.html

(0)
上一篇 2022年8月30日
下一篇 2022年8月30日

相关推荐

发表回复

登录后才能评论