我正在使用支持SRV查询的0.10.1版Kong。我正在使用领事的dns并尝试将其与Kong整合。查看文档
https://getkong.org/docs/0.10.x/loadbalancing/
我不知道如何在kong中指定我的upstream_url
例如:
# This tries reaching my service on port 80 instead of the port returned by SRV query
upstream_url = http://ms.service.consul/ms
# As per the doc I can specify a port and it is supposed to proxy the port
upstream_url = http://ms.service.consul:8989/ms
我的upstream_url配置与consul
的SRV记录相似 upstream_url = http://myservice.service.consul:{{do_i_need_something_here}}/myservice
Kong能否自动检测我的服务正在运行的端口,或者我错过了一些重点。