|
|
|
|
|
by all2
970 days ago
|
|
Wait, wait, so reverse proxy functionality is available in ASP.NET? If I'm deploying an app to a K8s cluster, I assume I would still opt for an ingress rather than making my app handle that bit of functionality? Where's the cutoff here? Also, how do I handle discovering what ASP.NET offers in terms of functionality? Is there an overview somewhere that I missed? |
|
In this case, asp.net core has a built-in web server named Kestrel. IIS can be used as a reverse proxy so you can have IIS forward requests to web servers bound to local host.
Personally, I think its quite hilarious that you went straight to k8's. The vast majority of asp.net code is running on servers (bare metal or otherwise).