# 工作进程数
worker_processes 1;

events {
    # 每个进程允许的最大连接数
    worker_connections 1024;
}

http {
    # 负载均衡
    upstream firstdemo {
        # 本地起了一个端口为8088的服务器
        server localhost: 8088;
        server localhost: 8089;
    }

    # 实现反向代理
    server {
        # 监听端口 3200
        listen    3200;

        # 配置静态访问的html
        location / {
            # 根路径名
            root html;
            # 文件路径
            index /test/test.html;
        }

        # 访问/api/v1为根路径
        location  /api/v1 {
            # 代理到firstdemo里面两个服务器上
            proxy_pass http://firstdemo
        }
    }
}

简单总结:这样配置,我就可以实现刷新localhost:3200 页面,可以在8088 和 8089两个服务器上随机连接,从而减少服务压力

最后付一个链接利用hosts制造虚拟域名+反向代理使用

posted on 2020-02-24 18:40  佑之以航  阅读(143)  评论(0编辑  收藏  举报