-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fdd78a
commit bba4af7
Showing
5 changed files
with
134 additions
and
122 deletions.
There are no files selected for viewing
25 changes: 13 additions & 12 deletions
25
src/UIs/bff/ReverseProxy.Yarp/ConfigurationOptions/AppSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
namespace ReverseProxy.Yarp.ConfigurationOptions | ||
namespace ReverseProxy.Yarp.ConfigurationOptions; | ||
|
||
public class AppSettings | ||
{ | ||
public class AppSettings | ||
{ | ||
public OpenIdConnect? OpenIdConnect { get; set; } | ||
} | ||
public OpenIdConnect? OpenIdConnect { get; set; } | ||
|
||
public string? FrontendHostingMode { get; set; } | ||
} | ||
|
||
public class OpenIdConnect | ||
{ | ||
public string? Authority { get; set; } | ||
public class OpenIdConnect | ||
{ | ||
public string? Authority { get; set; } | ||
|
||
public string? ClientId { get; set; } | ||
public string? ClientId { get; set; } | ||
|
||
public string? ClientSecret { get; set; } | ||
public string? ClientSecret { get; set; } | ||
|
||
public bool RequireHttpsMetadata { get; set; } | ||
} | ||
public bool RequireHttpsMetadata { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.9" /> | ||
<PackageReference Include="Yarp.ReverseProxy" Version="2.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.10" /> | ||
<PackageReference Include="Yarp.ReverseProxy" Version="2.2.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="wwwroot\" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters