I have a nodejs server s1 running on IIS (using iisnode). I'm using http-proxy-middleware to forward an http request to another server s2 (can't access that server from client because of cors).
s2 needs windows credentials. Someone told me that credentials tha are send to s2 aren't the windows credentials from the http request but the credentials of the user that running s1. He says I need to use impersonate in order to forward the http credentials.
Is it right ? How can I do it?