搭建SpringCloud聚合项目的集群网关zuul

在上篇文章的基础上改造:https://blog.csdn.net/weixin_40160361/article/details/104985680

代码链接:https://pan.baidu.com/s/1HpNF9vvgAfAW2IFmvj1GxA 
提取码:5zaw

一、下载nginx

链接:https://pan.baidu.com/s/1dnhV7L-pqW7Ywfeyv92Fpg 
提取码:005q

二、配置nginx

搭建SpringCloud聚合项目的集群网关zuul_第1张图片

// zuul的地址
upstream  backServer{
		server 127.0.0.1:81;
		server 127.0.0.1:82;
	}
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            // 调用zuul的地址,backServer对应上面的backServer
            proxy_pass  http://backServer/;
            index  index.html index.htm;
        }

三、启动Eureka服务,zuul服务,config-server服务,order-impl服务

zuul服务(端口需要改成81和82,分别启动)

启动nginx

搭建SpringCloud聚合项目的集群网关zuul_第2张图片

访问地址:http://localhost/api-order/getOrder?userToken=name

搭建SpringCloud聚合项目的集群网关zuul_第3张图片

你可能感兴趣的:(Spring,Cloud)