IIS Reverse Proxy to node.js
I am trying to configure a reverse proxy so that HTTP calls made from a website hosted in the IIS to node.js applications work. I'll explain it better: I've hired a VPS. In this VPS i have a IIS website (simple HTMl + Javascript ) and a node.js application running on localhost:3000. In javascript i make HHTP GET calls to the node.js to obtain some data. I need to configure a reverse proxy so that the HTTP calls made to node.mydomain.com for example, are internally redirected to localhost:3000. Example of website's HTTP call: $.get( "node.mymydomain.com/balance", function( data ) { alert( data