Compare commits

...

4 Commits

Author SHA1 Message Date
Developer 02
97a20fdb8f feat(IISProfile): Konfiguration eines bestimmten IIS-Verzeichnisses für UserManager 2025-03-25 15:44:55 +01:00
Developer 02
4da1bc7617 feat(ocelet): Add Auth/user endpoint 2025-03-25 14:14:30 +01:00
Developer 02
78a58568fc feat(ocelot): add logout endpoint 2025-03-25 13:53:58 +01:00
Developer 02
9844cd16e8 fix(ocelot): Update DownstreamPathTemplate for authentication 2025-03-25 13:51:21 +01:00
2 changed files with 27 additions and 3 deletions

View File

@ -11,7 +11,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
<ExcludeApp_Data>false</ExcludeApp_Data>
<ProjectGuid>329f45bf-4c79-4a7b-9086-d6205617aa42</ProjectGuid>
<DesktopBuildPackageLocation>P:\Install .Net\0 DD - Smart UP\Gateway\WorkFlow\$(Version)\$(Version).zip</DesktopBuildPackageLocation>
<DesktopBuildPackageLocation>P:\Install .Net\0 DD - Smart UP\Gateway\UserManager\$(Version)\$(Version).zip</DesktopBuildPackageLocation>
<PackageAsSingleFile>true</PackageAsSingleFile>
<DeployIisAppPath>Gateway</DeployIisAppPath>
<_TargetId>IISWebDeployPackage</_TargetId>

View File

@ -29,7 +29,7 @@
]
},
{
"DownstreamPathTemplate": "/api/Auth/work-flow?cookie=false",
"DownstreamPathTemplate": "/api/Auth/user-manager?cookie=true",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
@ -37,7 +37,7 @@
"Port": 7192
}
],
"UpstreamPathTemplate": "/api/Auth",
"UpstreamPathTemplate": "/api/Auth/login",
"UpstreamhttpsMethod": [ "Post" ]
},
{
@ -50,8 +50,32 @@
}
],
"UpstreamPathTemplate": "/api/Auth/check",
"UpstreamhttpsMethod": [ "Get" ]
},
{
"DownstreamPathTemplate": "/api/Auth/logout",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 7103
}
],
"UpstreamPathTemplate": "/api/Auth/logout",
"UpstreamhttpsMethod": [ "Post" ]
},
{
"DownstreamPathTemplate": "/api/Auth/user",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 7103
}
],
"UpstreamPathTemplate": "/api/Auth/user",
"UpstreamhttpsMethod": [ "Get" ]
},
{
"DownstreamPathTemplate": "/api/{route}",
"DownstreamScheme": "https",