Janith Widarshana
Janith Widarshana

Reputation: 3483

Windows server 2012 IIS hosted application on same port can not access from server itself

I have hosted several web applications on same port in IIS server on windows server 2012. When I tried to access those by using domain names via browser from server itself, nothing is loading. Can any one help me on this ?

Edited :

This is how I have set up bindings.

enter image description here

Upvotes: 1

Views: 230

Answers (2)

Christopher G. Lewis
Christopher G. Lewis

Reputation: 4835

Looks like an external vs internal resolution issue - Could you temporarily add:

10.1.100.190 justbooksalon.in
10.1.100.190 justbooksalon.com
10.1.100.190 justbooksalon.sg
10.1.100.190 www.justbooksalon.in
10.1.100.190 www.justbooksalon.com
10.1.100.190 www.justbooksalon.sg

to the server's c:\Windows\System32\drivers\etc\hosts file and see if that helps?

Upvotes: 1

Mitesh Gangaramani
Mitesh Gangaramani

Reputation: 307

Website justbooksalon.in is rendering from webserver IP address 67.213.65.248 so your webserver should have this IP address on it's network adapter and also on IIS website bindings. enter image description here

Your given screen-capture shows private IP address 10.x.x.x instead public IP address 67.213.65.248. Changing binding to 67.213.65.248 should fix the accessibility from inside.

Upvotes: 0

Related Questions