Remove HTTPS redirect

This commit is contained in:
Standa Lukeš 2020-10-17 16:26:39 +00:00
parent 651e44f331
commit 47388c67da

View file

@ -47,14 +47,7 @@ namespace Ksp.WebServer
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{ {
if (env.IsDevelopment()) app.UseDeveloperExceptionPage();
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseHttpsRedirection();
}
app.UseRouting(); app.UseRouting();