I have a Web App written based on MVC framework. It runs really well on the localhost and default port 51290. Now I need to run it using my domain name e.g. myhostname. What I have tried is to add a line in "applicationhost.config" section:
<binding protocol="http" bindingInformation="*:80:myhostname" />
When I press Ctr+F5, I got an error msg saying port 80 is in use.
The server is IIS express.
Can someone please instruct how should I run this App using host name? Thanks.