今天就跟大家聊聊有关spring cloud zuul与nginx的域名转发问题如何解决,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
nginx配置
proxy_set_header Host $http_host;
spring zuul配置
#设置转发时携带域名 zuul: add-host-header: true #设置不忽略头信息,否则无法写入cookie sensitive-headers:
坑:给zuul网关添加nginx转发携带域名
Zuul问题
问题描述
给zuul的配置文件添加下列不起作用
zuul: add-proxy-headers: true # 注意这个proxy
问题解决
是添加错了!!!
# add-proxy-headers: true 是错的 add-host-header: true # 才是对的
看完上述内容,你们对spring cloud zuul与nginx的域名转发问题如何解决有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。