Created
January 24, 2021 17:16
-
-
Save fzankl/a818eb8ed3fae8170224bf05dc92e83b to your computer and use it in GitHub Desktop.
YARP - Startup with custom configuration provider
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
public class Startup | |
{ | |
private readonly IConfiguration _configuration; | |
public Startup(IConfiguration configuration) | |
{ | |
_configuration = configuration; | |
} | |
public void ConfigureServices(IServiceCollection services) | |
{ | |
services | |
.AddSingleton<IProxyConfigProvider>(new CustomProxyConfigProvider()) | |
.AddReverseProxy(); | |
//.LoadFromConfig(_configuration.GetSection("ReverseProxy")); | |
} | |
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) | |
{ | |
if (env.IsDevelopment()) | |
{ | |
app.UseDeveloperExceptionPage(); | |
} | |
app.UseRouting(); | |
app.UseEndpoints(endpoints => | |
{ | |
endpoints.MapReverseProxy(); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment