我希望能够在Spring Boot服务器上运行的Zuul代理,在端口X上侦听端口Y,其中nginx正在同一台机器上侦听。我想发送相同的URL,参数等。
我这样做的原因是使用正在进行一些检查的ZuulFilter
。
例如,我想转到localhost:8943/humans/get/1
并将请求发送到localhost:8080/humans/get/1
提前致谢。
答案 0 :(得分:2)
这样的事情应该有效。
zuul:
routes:
humans:
path: /humans/**
url: http://localhost:8080
答案 1 :(得分:1)
我设法使用以下配置:
zuul:
routes:
services:
path: /**
url: http://localhost:8043/