我是 Ocelot API Gateway 的新手,想弄清楚如何执行响应主机重写?
我的 ocelot api 网关托管在 localhost:5000 上,下游服务器在另一个主机 example.com 上。我可以从 localhost:5000 代理到 example.com,但是,当 example.com 发送响应时,我被重定向到 example.com。我需要留在一个域内(本地主机:5000)。
任何帮助表示赞赏
{
"ReRoutes": [
{
"DownstreamPathTemplate": "/example/{all}",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "example.com",
"Port": 443
}
],
"UpstreamPathTemplate": "/example/{all}",
}
],
"GlobalConfiguration": {
"BaseUrl": "https://localhost:5000"
}
}