解决spring cloud zuul与nginx的域名转发问题方法

作者:袖梨 2022-06-29

本篇文章小编给大家分享一下解决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 # 才是对的

相关文章

精彩推荐