Skip to content

Instantly share code, notes, and snippets.

@fzankl
Created January 24, 2021 17:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fzankl/a818eb8ed3fae8170224bf05dc92e83b to your computer and use it in GitHub Desktop.
Save fzankl/a818eb8ed3fae8170224bf05dc92e83b to your computer and use it in GitHub Desktop.
YARP - Startup with custom configuration provider
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