// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } // app.UseResponseCompression(); var server = ServerSetting.GetRpcServer(GrantHttpProxy.HttpProxyName); if (server.ServerType == ServerType.HttpWebApi) { ServerProxy.Register(server.AssemblyPath); } else { GrantHttpProxy.Register(); } app.UseCors("AllowAll"); app.UseMiddleware <ProxyMiddleware>(); // app.UseMvc(); }