feat(gateway): Unterstützung für 3-stufig verschachtelte API-Routen hinzugefügt

- Routenzuordnung für /api/{route1}/{route2}/{route3} hinzugefügt
- Ermöglicht Downstream-Routing zur Unterstützung komplexerer API-Strukturen
This commit is contained in:
2025-07-22 15:55:48 +02:00
parent a6140cab92
commit d2793f476a
2 changed files with 122 additions and 24 deletions

View File

@@ -98,6 +98,23 @@
"Delete"
]
},
{
"DownstreamPathTemplate": "/api/{route1}/{route2}/{route3}",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 7103
}
],
"UpstreamPathTemplate": "/api/{route1}/{route2}/{route3}",
"UpstreamhttpsMethod": [
"Get",
"Post",
"Put",
"Delete"
]
},
{
"DownstreamPathTemplate": "/",
"DownstreamScheme": "http",