How do I disable HTTPS in ASP.NET Core 2.1 + Kestrel?

In the Startup.cs, remove the middleware

app.UseHttpsRedirection();

Leave a Comment