When optimizing ASP.NET Core applications for performance, developers often use the _________ server in conjunction with a reverse proxy.
- Kestrel
- Apache
- Nginx
- Tomcat
When optimizing ASP.NET Core applications for performance, developers often use the Kestrel server in conjunction with a reverse proxy like Nginx or Apache. Kestrel is a lightweight, cross-platform web server optimized for ASP.NET Core, and it's often used as the front-end server while a reverse proxy handles tasks like load balancing and SSL termination.
Loading...
Related Quiz
- Which type of testing focuses on testing multiple components of an application together?
- Which of the following is a built-in Razor Tag Helper in ASP.NET Core?
- In a Dockerized ASP.NET Core application deployment, which command is used to build a Docker image from a Dockerfile?
- When handling errors in your ASP.NET Core MVC application, which action result can be used to return a custom error view?
- What is the primary purpose of the _ViewImports.cshtml file in ASP.NET Core Razor Views?