IISExpress Configuration and Custom Domain setup

Edit File as Administrator: 

\​Documents\IISExpress\config\applicationhost.config

Under <sites>
                 <site …>
                     <bindings>
                          <binding protocol=”http” bindingInformation=”*:8080:localhost” />
                         <binding protocol=”http” bindingInformation=”*:8080:*” />

(Note: <binding row duplicated with diff info)
Also setup hosts file 
127.0.0.1   localhost.customdomain.com
==========
Now your website is linked to and can browse to:
http://localhost.customdomain.com:8080/Default.aspx
Thru VS2013

Also refer if needed:

http://stackoverflow.com/questions/19457193/stop-visual-studio-2013-modifying-the-iisexpress-applicationhost-config
OR

https://www.google.co.uk/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=iis+express+netsh+http+add+urlacl​

 

Leave a Reply