一聚教程网:一个值得你收藏的教程网站

热门教程

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

时间:2022-06-29 02:19:58 编辑:袖梨 来源:一聚教程网

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

热门栏目