使用zuul做api网关时,出现了两个问题
一、会话无法保持
zuul到具体服务时,http请求头中的cookie和Authorization无法传递到具体的服务
可以设置 zuul:sensitive-headers
zuul:
routes:
sensitive-headers:
- Cookie,Set-Cookie,Authorization
add-host-header: true
二、请求通过zuul进行登录后,会在WebSite服务进行重定向到欢迎页面。此时,URL中的Host变成了具体WebSite服务的地址
可通过修改zuul.add-host-header=true配置进行处理。