Mykola
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
0 deletions
-
src/Web/Startup.cs
|
|
|
@ -170,6 +170,16 @@ namespace Microsoft.eShopWeb.Web |
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) |
|
|
|
{ |
|
|
|
var catalogBaseUrl = Configuration.GetValue(typeof(string), "CatalogBaseUrl") as string; |
|
|
|
if (!string.IsNullOrEmpty(catalogBaseUrl)) |
|
|
|
{ |
|
|
|
app.Use((context, next) => |
|
|
|
{ |
|
|
|
context.Request.PathBase = new PathString(catalogBaseUrl); |
|
|
|
return next(); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
app.UseHealthChecks("/health", |
|
|
|
new HealthCheckOptions |
|
|
|
{ |
|
|
|
|