|
@@ -1,4 +1,3 @@
|
|
|
-using System;
|
|
|
using System.Net.Http;
|
|
|
using GxPress.Api.ServiceExtensions;
|
|
|
using GxPress.Common.AppOptions;
|
|
@@ -21,7 +20,6 @@ namespace GxPress.Api
|
|
|
public class Startup
|
|
|
{
|
|
|
public IConfiguration Configuration { get; }
|
|
|
- private IWebHostEnvironment currentEnvironment { get; set; }
|
|
|
public Startup(IConfiguration configuration)
|
|
|
{
|
|
|
Configuration = configuration;
|
|
@@ -45,17 +43,7 @@ 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 =>
|
|
|
{
|
|
@@ -118,14 +106,13 @@ 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())
|
|
|
{
|
|
|
handler.ServerCertificateCustomValidationCallback = delegate { return true; };
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
//最上层的自定义异常处理中间件
|
|
|
app.UseMiddleware<ExceptionMiddleware>();
|
|
|
app.UseRouting();
|