How To Create a Custom UserStore in ASP.NET Core 6
First Look at Project Tye
Tye picked random ports while the project app config already specified ports. https://github.com/dotnet/tye/issues/178
Validation asp.net Configuration at Startup
Using the Options pattern in ASP.NET Core allows you to benefit from Options validation, but this only fires the first time the configuration is accessed.
Getting the most out of Swagger in your ASP.NET Core api
Even with next to no configuration or additional work on your API Swagger already provides great insights into your API.
Experimenting with YARP: A Reverse Proxy
A Route is the inbound URL which the reverse proxy is going to act on. The cluster is a list of potential destination URLs.
How to Setup ASP.NET Core Health Check UI
In Part one we setup the health check endpoints, now to add a frontend.
Secure Swagger on ASP.NET Core by address and port
This follows on from my previous post Secure ASP.NET Core Health Checks to a specific port and assumes that you already have your service running over 2 ports and have specified a ManagementPort
in the appsettings.json file.
Secure ASP.NET Core Health Checks to a specific port
To secure Health Checks it is possible to make them available on internal addresses only and on a different port to the publicly served pages/API endpoints.
Running ASP.NET Core on a RaspberryPi 2 with Nginx
I followed the instructions from Get Started and docs.microsoft.com, and found that some additional configuration was required.