windows+linux环境下nginx部署环境

简介: windows+linux环境下nginx部署环境

@[TOC]

一、将自己的电脑作为服务器,【照猫画虎可以在服务器上设置下载nginx】

Window下载nginx

1. 官方网站:

https://nginx.org/

2. 版本描述:

在这里插入图片描述

3. 下载稳定版

在这里插入图片描述

4. 下载解压到某文件夹下,注意路径尽量不要有中文名

在这里插入图片描述

5. 输入网址 localhost 进行访问

在这里插入图片描述

6. 将项目进行打包部署

6.1、打包 npm run build

将项目打包:npm run build,生成dist文件夹,打包前如需配置,tsconfig.jsonjsconfig.jspn需要设置,请参考:【待补充】
在这里插入图片描述

6.2、部署项目

在这里插入图片描述

==将dist文件夹下的内容拷贝至指定目录下==

在这里插入图片描述

6.3、更改nginx配置文件

  1. 修改配置文件 nginx-1.20.1\conf\nginx.config 文件

在这里插入图片描述

在这里插入图片描述
如下可做参考

#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       8001;
        server_name  localhost;
        root         ./html/web/;
        index        index.html index.htm;






        location / {
   
   
            # 截取404 的 url,传给 @router
            try_files $uri $uri/   @router;
        }
        location /api/{
   
   
            # 项目中代理使用的api要转的地址
            proxy_pass http://192.168.1.31:8083/;
            proxy_redirect default;
            proxy_set_header Host $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;

        }
        location @router {
   
   
            # 接到截取的uri 并按一定规则重写 uri 和vue 路由跳转
            rewrite ^.*&    /index.html last;
        }






    }
}
  1. 更改完配置之后需要重新启动nginx

    • ==无脑式重启==
      在这里插入图片描述

      • ==或使用命令进行结束进程==

        # 启动:
        直接点击Nginx目录下的nginx.exe  或者 cmd 运行 start nginx
        
        # 关闭:
        nginx -s stop  或者  nginx -s quit
        
        stop 表示立即停止nginx,不保存相关信息
        quit 表示正常退出nginx,并保存相关信息
        
        # 重启:
        nginx -s reload
        
  2. 到此步骤就完成了项目在本地上的部署

二、项目在远程Linux下的部署

建议在Mac电脑上部署

1. 通过终端远程登录自己的服务器

ssh登录到远程主机上
ssh root@

2. 安装并启动 Nginx

  1. yum install nginx
  2. systemctl start nginx.service # 开启nginx服务
  3. systemctl enable nginx.service # 跟随系统启动
    在这里插入图片描述
  4. 上传打包项目部署
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    三、linux上离线安装nginx

    1.下载导入离线包

    链接:https://pan.baidu.com/s/1bXrHV6I0W6yYLo6elhyakA
    提取码:9e5w

2.安装依赖包

安装依赖包gcc,在gcc目录下执行以下命令:

rpm -Uvh *.rpm --nodeps --force

安装依赖包gcc-c++,在gcc-c++目录下执行以下命令:

rpm -Uvh *.rpm --nodeps --force

3.检测是否安装成功

gcc -v


g++ -v

在这里插入图片描述

版本可能不一样,但出现类似文字即可。

4.安装PCRE

在nginx目录下解压pcre并安装

tar -zxvf pcre-8.35.tar.gz
cd pcre-8.35
./configure
make
make install

5.安装libtool

在nginx目录下解压libtool 并安装

tar -zxvf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure
make
make install

6.安装nginx

在nginx目录下解压nginx并安装

tar -zxvf nginx-1.13.9.tar.gz
cd nginx-1.13.9
./configure
make
make install

7. nginx命令

  • 首先找到nginx的安装目录

      which nginx
    

    在这里插入图片描述

  • 查看进程是否存在

      ps -ef|grep nginx
    

    在这里插入图片描述

  • 杀死进程

      kill -QUIT 1282
    
  • 强制停止

      kill -9 1282
    
  • 进入到nginx 的sbin 目录,启动nginx

      cd /usr/local/nginx/sbin/
      ./nginx             启动
      ./nginx -s stop     停止
      ./nginx -s quit     退出
      ./nginx -s reload   重启
      service nginx restart  如果启动没成功就选择这个命令
    
  • 保险起见,可以再看下进程,成功的情况,会看到新的进程号

      ps -ef|grep nginx
    
相关文章
|
16天前
|
Ubuntu Linux Shell
(已解决)Linux环境—bash: wget: command not found; Docker pull报错Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled
(已成功解决)Linux环境报错—bash: wget: command not found;常见Linux发行版本,Linux中yum、rpm、apt-get、wget的区别;Docker pull报错Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled
185 68
(已解决)Linux环境—bash: wget: command not found; Docker pull报错Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled
|
13天前
|
消息中间件 Java Kafka
【手把手教你Linux环境下快速搭建Kafka集群】内含脚本分发教程,实现一键部署多个Kafka节点
本文介绍了Kafka集群的搭建过程,涵盖从虚拟机安装到集群测试的详细步骤。首先规划了集群架构,包括三台Kafka Broker节点,并说明了分布式环境下的服务进程配置。接着,通过VMware导入模板机并克隆出三台虚拟机(kafka-broker1、kafka-broker2、kafka-broker3),分别设置IP地址和主机名。随后,依次安装JDK、ZooKeeper和Kafka,并配置相应的环境变量与启动脚本,确保各组件能正常运行。最后,通过编写启停脚本简化集群的操作流程,并对集群进行测试,验证其功能完整性。整个过程强调了自动化脚本的应用,提高了部署效率。
【手把手教你Linux环境下快速搭建Kafka集群】内含脚本分发教程,实现一键部署多个Kafka节点
|
9天前
|
安全 网络协议 Linux
telnet在windows和linux上的使用方法
Telnet是一个简单且强大的网络工具,广泛用于远程管理和网络诊断。尽管存在安全风险,但在受控环境中,Telnet仍然是一个非常有用的工具。通过本文的介绍,您应该能够在Windows和Linux系统上安装并使用Telnet进行各种网络操作。
67 18
|
29天前
|
安全 Ubuntu Linux
Metasploit Pro 4.22.6-2024111901 (Linux, Windows) - 专业渗透测试框架
Metasploit Pro 4.22.6-2024111901 (Linux, Windows) - 专业渗透测试框架
45 9
Metasploit Pro 4.22.6-2024111901 (Linux, Windows) - 专业渗透测试框架
|
12天前
|
Ubuntu 网络协议 Linux
快速部署WSL(Windows Subsystem for Linux)
WSL提供了一种轻量级的方法,使开发者能够在Windows上无缝运行Linux环境。通过本文介绍的步骤,可以快速安装、配置和使用WSL,以满足开发和测试的需求。
52 8
|
25天前
|
弹性计算 开发框架 安全
基于云效 Windows 构建环境和 Nuget 制品仓库进行 .Net 应用开发
本文将基于云效 Flow 流水线 Windows 构建环境和云效 Packages Nuget 制品仓库手把手教你如何开发并部署一个 .NET 应用,从环境搭建到实战应用发布的详细教程,帮助你掌握 .NET 开发的核心技能。
|
29天前
|
自然语言处理 安全 Java
Nexpose 7.0.1 for Linux & Windows - 漏洞扫描
Nexpose 7.0.1 for Linux & Windows - 漏洞扫描
41 6
|
1月前
|
关系型数据库 MySQL Linux
MySQL数据库下载安装教程(Windows&Linux)
本文档详细介绍了MySQL的安装步骤,包括安装前的准备工作、下载安装包、Windows和Linux系统下的具体安装流程,以及如何配置MySQL服务、设置环境变量、启动服务和连接数据库等关键操作。
|
数据采集 应用服务中间件 Linux
一篇文章教会你在Windows和Linux系统下搭建Nginx
一篇文章教会你在Windows和Linux系统下搭建Nginx
445 0
一篇文章教会你在Windows和Linux系统下搭建Nginx
|
2月前
|
缓存 应用服务中间件 网络安全
Nginx中配置HTTP2协议的方法
Nginx中配置HTTP2协议的方法
135 7