|
@@ -1,3 +1,4 @@
|
|
|
+using System;
|
|
|
using System.Net.Http;
|
|
|
using GxPress.Api.ServiceExtensions;
|
|
|
using GxPress.Common.AppOptions;
|
|
@@ -20,6 +21,7 @@ namespace GxPress.Api
|
|
|
public class Startup
|
|
|
{
|
|
|
public IConfiguration Configuration { get; }
|
|
|
+ private IWebHostEnvironment currentEnvironment { get; set; }
|
|
|
public Startup(IConfiguration configuration)
|
|
|
{
|
|
|
Configuration = configuration;
|
|
@@ -43,7 +45,17 @@ namespace GxPress.Api
|
|
|
{
|
|
|
options.JsonSerializerOptions.PropertyNamingPolicy = null;
|
|
|
}).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
|
|
|
-
|
|
|
+ services.AddHttpClient("yowkoblog", c => { c.BaseAddress = new Uri("https://lx.gxcbcmjt.com/"); })
|
|
|
+ .ConfigurePrimaryHttpMessageHandler(h =>
|
|
|
+ {
|
|
|
+ var handler = new HttpClientHandler();
|
|
|
+ if (currentEnvironment.IsDevelopment())
|
|
|
+ {
|
|
|
+ //handler.ServerCertificateCustomValidationCallback = delegate { return true; };
|
|
|
+ handler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator;
|
|
|
+ }
|
|
|
+ return handler;
|
|
|
+ });
|
|
|
//文件上传限制60MB
|
|
|
services.Configure<FormOptions>(options =>
|
|
|
{
|
|
@@ -106,6 +118,7 @@ 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)
|
|
|
{
|
|
|
+ currentEnvironment=env;
|
|
|
var handler = new HttpClientHandler();
|
|
|
if (env.IsDevelopment())
|
|
|
{
|