|
@@ -1,3 +1,4 @@
|
|
|
+using System.Net.Http;
|
|
|
using GxPress.Api.ServiceExtensions;
|
|
|
using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Middleware;
|
|
@@ -105,8 +106,10 @@ namespace GxPress.Api
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
{
|
|
|
+ var handler = new HttpClientHandler();
|
|
|
if (env.IsDevelopment())
|
|
|
{
|
|
|
+ handler.ServerCertificateCustomValidationCallback = delegate { return true; };
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
}
|
|
|
|