I'm in the process of testing an Azure website using IIS Express. The problem is that I would like to be able to access my testing role from another system. I'n general I have found a few suggestions that I can allow access to IIS Express by doing the following:
Modify the applicationHost.config file with the following information:
<bindings>
<binding protocol="https" bindingInformation="*:443:*" />
<binding protocol="http" bindingInformation="*:81:" />
</bindings>
However, when debugging an Azure website with IIS Express a new applicationHost.config file gets generated everytime I launch the debugger and my settings get overwritten. Does anyone know of a way I can get IIS Express to allow external connections via Azure debugging?