Hi everyone,
Pardon me if this question is in the wrong forum.
We have a few IIS webserver that we want to open to the Internet. What is the best method?
NOTE: pardon me if I use the word router in more than one sense. Here I am referring to a machine that is both a secure firewall that is a router and may be more..whatever it needs to be to keep internal servers secure
Or if there is a better method to do this....please share with me or point me some URLs that would be helpful.
a whole lot of thanks,
UB
Pardon me if this question is in the wrong forum.
We have a few IIS webserver that we want to open to the Internet. What is the best method?
Code:
Case1:
Have a routing server that takes all the requests [that only listens on port 80, 443] and redirects depending on the URL.
ex:
[URL unfurl="true"]https://www.domain.com[/URL] - redirected to 192.168.1.1 [internal IP]
[URL unfurl="true"]https://server2.domain.com[/URL] - redirected to 192.168.1.2 [internal IP]
[URL unfurl="true"]https://server3.domain.com[/URL] - redirected to 192.168.1.3 [internal IP]
Each of these internal webservers open only ports 80 and 443
Code:
Case2:
Put each webserver server2, server3.... open to the internet with different URL
so each request goes directly to the machine than through a routing machine.
Or if there is a better method to do this....please share with me or point me some URLs that would be helpful.
a whole lot of thanks,
UB