Configuring ASP.NET Core Behind a Load Balancer
If you deploy your ASP.NET Core web application to the cloud you are likely putting it behind a load balancer. Here’s some quick info that might provide useful for how to Configure ASP.NET Core behind a load balancer. Forwarded Headers There are generally 3 headers which are added to the request header to tell your application about how it was forwarded from the load balancer. X-Forwarded-For: List of comma space list of IP addresses of the original client and proxies that received the request. X-Forwarded-Proto: The scheme from the original client and proxies. X-Forwarded-Host: Original host header. SSL Termination If… Read More »Configuring ASP.NET Core Behind a Load Balancer