I'm evaluating the ASP.NET Boilerplate framework for implementating my project.
I have a requirement that consists of avoiding direct calls from Angular to API. This is because the API should not be exposed directly to the client and needs to pass through a proxy. If considering an MVC application for instance, I can create a proxy controller, like the one reported here.
For this scenario, is it possible to implement this with ASP.NET Boilerplate framework? If it is possible, how can it be done?