gpt4 book ai didi

docker - 使用 ocelot 和 docker 服务使用路由 ApiGateway 时出错

转载 作者:行者123 更新时间:2023-12-04 01:09:21 26 4
gpt4 key购买 nike

我正在使用 ocelot 创建一个 ApiGateway,它在 net core 中使用一个 Api 服务。ApiGateway 和 ApiService 部署在 docker 上,docker compose 是这样的:Docker-compose:

tresfilos.webapigateway:
image: ${DOCKER_REGISTRY-}tresfilosapigateway
build:
context: .
dockerfile: tresfilos.ApiGateway/ApiGw-Base/Dockerfile

tresfilos.users.service:
image: ${DOCKER_REGISTRY-}tresfilosusersservice
build:
context: .
dockerfile: tresfilos.Users.Service/tresfilos.Users.Service/Dockerfile

Docker-compose.override:

tresfilos.webapigateway:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- IdentityUrl=http://identity-api
ports:
- "7000:80"
- "7001:443"
volumes:
- ./tresfilos.ApiGateway/Web.Bff:/app/configuration

tresfilos.users.service:
environment:
- ASPNETCORE_ENVIRONMENT=Development
- ASPNETCORE_URLS=https://+:443;http://+:80
ports:
- "7002:80"
- "7003:443"
volumes:
- ${APPDATA}/Microsoft/UserSecrets:/root/.microsoft/usersecrets:ro
- ${APPDATA}/ASP.NET/Https:/root/.aspnet/https:ro

configuration ocelot apigateway 中,我将 .json 定义为:

 "ReRoutes": [
{
"DownstreamPathTemplate": "/api/{version}/{everything}",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "tresfilos.users.service",
"Port": 7002
}
],
"UpstreamPathTemplate": "/api/{version}/user/{everything}",
"UpstreamHttpMethod": [ "POST", "PUT", "GET" ]
},
],
"GlobalConfiguration": {
"BaseUrl": "https://localhost:7001"
}

当我从 url 使用 ApiGateway 时:http://localhost:7000/api/v1/user/Login/authentication

我在终端 docker 中有错误: enter image description here

为什么会出现上述错误,如何解决?

最佳答案

您运行的是哪个版本的 Ocelot?

我发现另一个线程有类似的问题,显然从 Ocelot 的 16.0.0 版本开始,Ocelot 配置文件中的“ReRoutes”已更改为“Routes”。

我找到的主题是 - 404 trying to route the Upstream path to downstream path in Ocelot

关于docker - 使用 ocelot 和 docker 服务使用路由 ApiGateway 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65344815/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com