Top "Kestrel-http-server" questions

Kestrel is a HTTP server that is built-in to ASP.

Which web server are you using in production for ASP.NET Core on a *nix server?

With ASP.NET Core now released, I was wondering what the best hosting option is for Linux and Mac environments. …

c# asp.net asp.net-core .net-core kestrel-http-server
Why does aspnet core start on port 80 from within Docker?

TL;DR: Why does an aspnet core app run on port 80 from within a Docker image, but 5000 outside a docker …

asp.net docker .net-core kestrel-http-server
Is Kestrel using a single thread for processing requests like Node.js?

Both Kestrel and Node.js are based on libuv. While Node.js exactly states that it uses an event loop, …

asp.net-core kestrel-http-server
Stop a running dotnet core website running on kestrel

When deploying a new version of an existing .net core website. How do I first safely stop the old running …

linux asp.net-core .net-core kestrel-http-server
IIS vs Kestrel performance comparison

How does the performance of IIS look like comparing to a Kestrel http server? Seems like Kestrel is significantly inspired …

performance iis kestrel-http-server
Configure ASP.NET Core 2.0 Kestrel for HTTPS

TL;DR What is today the correct way to setup HTTPS with ASP.NET Core 2.0? I would like to configure …

c# asp.net-core asp.net-core-2.0 kestrel-http-server
Enable both Windows authentication and Anonymous authentication in an ASP.NET Core app

I know that this has been asked many times before, but unfortunately not about ASP.NET Core web apps, just …

c# authentication asp.net-core iis-8 kestrel-http-server
Can I set listen URLs in appsettings.json in ASP.net Core 2.0 Preview?

I'm creating an ASP.net Core 2.0 app to run on the .net Core 2.0 runtime, both currently in their Preview versions. …

asp.net-core .net-core appsettings kestrel-http-server
Increase upload request length limit in Kestrel

I am running an ASP.NET Core web app and want to upload large files. I know that when running …

file-upload asp.net-core asp.net-core-2.0 kestrel-http-server
Remove "Server" header from ASP.NET Core 2.1 application

Is it possible to remove the Server Response header in a ASP.NET Core 2.1 application (running on Server 2016 with IIS 10)? …

asp.net-core web-config asp.net-core-2.1 kestrel-http-server