chore(ocelet.Development): Anordnen von Ports und Authentifizierungsendpunkten.

This commit is contained in:
Developer 02 2025-03-11 16:46:35 +01:00
parent cbd3accf72
commit e3be4f5e6f
2 changed files with 25 additions and 30 deletions

View File

@ -23,7 +23,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"launchUrl": "swagger/index.html",
"applicationUrl": "https://localhost:7052;http://localhost:5028",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"

View File

@ -2,72 +2,67 @@
"Routes": [
{
"DownstreamPathTemplate": "/swagger/{route}",
"DownstreamScheme": "http",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 9090
"Port": 7120
}
],
"UpstreamPathTemplate": "/swagger/auth/{route}",
"UpstreamHttpMethod": [
"UpstreamPathTemplate": "/swagger/{route}",
"UpstreamhttpsMethod": [
"Get"
]
},
{
"DownstreamPathTemplate": "/swagger/{route}",
"DownstreamScheme": "http",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
"Port": 7192
}
],
"UpstreamPathTemplate": "/swagger/{route}",
"UpstreamHttpMethod": [
"UpstreamPathTemplate": "/swagger/auth/{route}",
"UpstreamhttpsMethod": [
"Get"
]
},
{
"DownstreamPathTemplate": "/api/Auth/{route}",
"DownstreamScheme": "http",
"DownstreamPathTemplate": "/api/Auth/work-flow?cookie=false",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
"Port": 7192
}
],
"UpstreamPathTemplate": "/api/Auth/{route}",
"UpstreamHttpMethod": [
"Get",
"Post"
]
"UpstreamPathTemplate": "/api/Auth",
"UpstreamhttpsMethod": [ "Post" ]
},
{
"DownstreamPathTemplate": "/api/Auth/login/{id}",
"DownstreamScheme": "http",
"DownstreamPathTemplate": "/api/Auth/check",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
"Port": 7120
}
],
"UpstreamPathTemplate": "/api/Auth/login/{id}",
"UpstreamHttpMethod": [
"Post"
]
"UpstreamPathTemplate": "/api/Auth/check",
"UpstreamhttpsMethod": [ "Post" ]
},
{
"DownstreamPathTemplate": "/api/{route}",
"DownstreamScheme": "http",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
"Port": 7120
}
],
"UpstreamPathTemplate": "/api/{route}",
"UpstreamHttpMethod": [
"UpstreamhttpsMethod": [
"Get",
"Post",
"Put",
@ -76,15 +71,15 @@
},
{
"DownstreamPathTemplate": "/api/{route}/{id}",
"DownstreamScheme": "http",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 8088
"Port": 7120
}
],
"UpstreamPathTemplate": "/api/{route}{id}",
"UpstreamHttpMethod": [
"UpstreamhttpsMethod": [
"Get",
"Delete"
]