Spring Cloud 17 -- 使用 nginx 做网关集群的负载均衡

一、配置 nginx

修改配置文件 nginx.conf


二、直接通过 zuul1 或者 zuul2 访问

比如 http://localhost:8769/toclient2/client2/hello
或者 http://localhost:8770/toclient2/client2/hello

三、通过 nginx 访问

访问 http://localhost:88/toclient2/client2/hello

四、在 zuul 的过滤器中接入日志打印

可以发现通过 nginx 会交替访问 zuul1 和 zuul2

五、负载均衡功能完成

你可能感兴趣的:(Spring Cloud 17 -- 使用 nginx 做网关集群的负载均衡)