Customize Logging Configurations in .NET Core Web Applications
We have seen how easy it is to configure logging in a .NET console application. In this post, let's see how to configure logging in an ASP .NET Core web…
We have seen how easy it is to configure logging in a .NET console application. In this post, let's see how to configure logging in an ASP .NET Core web…
We have seen in the previous few posts that Generic host is a concept that encapsulates configuration, logging, dependency injection and IHostedService implementations. So, if the .NET console application has the…
In previous article, we have seen how to publish a ASP .NET Core web application to IIS. We have seen that ASP .NET Core Hosting Bundle is required to be…
I have published some posts about basics of Kestrel server, which comes with .NET. The Kestrel server can be used with other web server like IIS or NGINX. In this…
Transport layer security for HTTP based services is achieved by adding a sub layer of SSL or TLS. SSL stands for Secure Socket Layer and TLS stands for Transport Layer…
Kestrel web server, like any other web server, has some configuration settings. For HTTPS, we can specify SSL certificates, or we can allow only TLS protocol via some settings, or…
Kestrel server is the default server that is shipped with .NET. This article explains how the Kestrel server configurations can be modified to change the default bound URLs. What is…
.NET core web applications can be executed on different web servers. .NET itself comes with Kestrel server. This article talks about what is kestrel server, what are different ways to…
We have covered many articles now about the generic host. The host is a concept encapsulates the dependency injection, configuration, logging and IHostedService implementations. If you have gone through all…
This article is extension to generic host series. Previous articles were about introduction, interfaces and host configurations. In this article, let's quickly have a look at some settings that can…
This is the third article in .NET generic host series after introduction and important interfaces posts. There are two different methods ConfigureHostConfiguration and ConfigureAppConfiguration. These two methods seems to be…
This article is an extension to previous article about .NET generic host. There are many framework provided services, which are registered automatically. For full list, see Dependency injection in ASP.NET Core.…