Using http-proxy-middleware (which uses http-proxy) I was able to create proxy to an internal (hidden from outside) url and get expected response.
However, since this is middleware approach, I am not able to apply any existing Guards (eg, JWT, Role etc) to this proxy.
NetJS Guards documentation mentions that Guards are run after each middleware.
Without re-implementing all the Guards as middleware, is there any way that I can protect this proxy route with existing Guards?
Thanks in advance.