_________ is the lightweight, cross-platform web server used by default with ASP.NET Core.
- Apache
- IIS
- Kestrel
- Nginx
Kestrel is the lightweight, cross-platform web server that is used by default with ASP.NET Core. It's designed for high performance and is well-suited for hosting ASP.NET Core applications. Developers can also use it in combination with reverse proxy servers like Nginx or Apache for production deployments.
Loading...
Related Quiz
- When creating custom Razor tag helpers, the method _________ is overridden to generate the desired output.
- What is the primary purpose of CI/CD in the context of software deployment?
- In your ASP.NET Core application, you notice that some middleware is not executing as expected. Considering the middleware pipeline, what could be the potential reason?
- How can you protect a controller action to be accessible only by users with the role "Admin" using the [Authorize] attribute?
- Which template should you choose when you need both Razor-based web pages and API controllers?