Browse Source

Remove HTTPS redirect

mj-deploy
Standa Lukeš 4 years ago
parent
commit
47388c67da
  1. 9
      server/Ksp.WebServer/Startup.cs

9
server/Ksp.WebServer/Startup.cs

@ -47,14 +47,7 @@ namespace Ksp.WebServer
// 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();
}
else
{
app.UseHttpsRedirection();
}
app.UseDeveloperExceptionPage();
app.UseRouting();