practicekea_backend/gateway/ocelot.Development.json

49 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
{
"Routes": [
//====================================================
// APIS FOR AN ADMIN
//====================================================
{
"DownstreamPathTemplate": "/api/v1/examtypes",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8001
}
],
"UpstreamPathTemplate": "/gateway/examtypes",
"UpstreamHttpMethod": [ "POST", "PUT", "GET" ]
},
{
"DownstreamPathTemplate": "/api/v1/examtypes/{id}",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8001
}
],
"UpstreamPathTemplate": "/gateway/examtypes/{id}",
"UpstreamHttpMethod": [ "GET", "DELETE" ]
},
//====================================================
// APIS FOR AN INSTITUTE
//====================================================
{
"DownstreamPathTemplate": "/v1/users",
"DownstreamScheme": "http",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8002
}
],
"UpstreamPathTemplate": "/gateway/users",
"UpstreamHttpMethod": [ "POST", "PUT", "GET" ]
}
],
"GlobalConfiguration": {
"BaseUrl": "https://localhost:8000"
}
}