Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • Thanks for the reply.. But we dont want to use port number with host header so that the site at 90 port should be able access with the url (http:// Testsite). We want to achieve this without binding to 80 port. Commented Jun 24, 2018 at 11:54
  • You can use host header with multiple sites on http port 80 (https is slightly more complex) Each site needs to have a unique host header and you should add a DNS A Record for each site in your DNS. main point is the host header needs to be unique. Both DNS records must point to the same IP. So you can have testsite and testsite2 Commented Jun 24, 2018 at 14:25
  • As I mentioned in my previous comment we do not want to bind multiple sites to 80 port since this will increase load on 80 port. So we want to bind the site to 90 port with the url http:// testsite. Please let me know if there is any alternative solution to achieve this.. Commented Jun 25, 2018 at 8:48