Mobile app version of vmapp.org
Login or Join
Odierno851

: Redirect to an IP while masking the URL Using a Node.JS web server, I want to have an IIS setup to where the user goes to bot.url.co/dashboard it sends the data to ip:port/dashboard, where

@Odierno851

Posted in: #Iis #IpAddress #NodeJs #Redirects

Using a Node.JS web server, I want to have an IIS setup to where the user goes to
bot.url.co/dashboard it sends the data to ip:port/dashboard, where IP:port is handled using Node.JS, but the link doesn't change before the /. Is this doable?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Odierno851

1 Comments

Sorted by latest first Latest Oldest Best

 

@Berumen354

You need to set-up a reverse proxy in IIS that redirects the requests to your Node.js Server and serves back the response to your users. This is as easy as 1.2.3 in IIS using the URL Rewriter module.

Here you have an explanation: blogs.msdn.microsoft.com/friis/2016/08/25/setup-iis-with-url-rewrite-as-a-reverse-proxy-for-real-world-apps/

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme