Azure VM (Simple 1 hour work)
Budget: $10 – $15 USD
Sure. I have a azure vm with IIS installed. In vm I have an app (port 443) , api (port 3000) and a http listener listening for incoming data (port 11000). I use external app from another vendor that sends data to my listener on port 11000. It works fine if I use my url and port (http://myurl:11000). But I don't want to add the port to url, I prefer to use https://myurl
But because I have an app also (port 443) not sure if that interferes with my other port (11000)
So I need url rewrite logic to say, if a request comes from https://myurl/data then send to http listener on port 11000
but I would prefer to use https with listener, I think I've done that
Also external app appends string to url
But because I have an app also (port 443) not sure if that interferes with my other port (11000)
So I need url rewrite logic to say, if a request comes from https://myurl/data then send to http listener on port 11000
but I would prefer to use https with listener, I think I've done that
Also external app appends string to url