Is it possible to use IIS Express to host pages on a network. Out of the box it can do localhost but I am trying to bind it to an IP address.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I think you can. To do this you need to edit To start iisexpress, you need administrator privileges |
|||||||||||||
|
|
In order for IIS Express answer on any IP address, just leave the address blank, i.e:
Don't forget to restart the IIS express before the changes can take place. |
|||||||
|
|
Change bindingInformation=":8080:" And remember to turn off the firewall for IISExpress |
|||||
|
|
Below are the complete changes I needed to make to run my x64 bit IIS application using IIS Express, so that it was accessible to a remote host:
The configuration file (applicationhost.config) had a section added as follows:
The 64 bit version of the .NET framework can be enabled as follows:
|
||||
|
|