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.

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

I think you can.

To do this you need to edit applicationhost.config file manually (edit bindingInformation '<ip-address>:<port>:<host-name>')

To start iisexpress, you need administrator privileges

link|improve this answer
1  
that was it. Copied the applicationhost.config and modified the binding to <bindings> <binding protocol="http" bindingInformation=":8080:<ip address>" /> </bindings> – jdiaz Feb 2 '11 at 22:08
Do you know if you can set it up to listen to "Any IP"? – Alxandr Jun 1 '11 at 14:11
I have same problem. I changed the binding information as per your suggestion and re-started the iis express. When i launched my web projects from Visual Studio, its still going to localhost:yyyy./xxxx. Any ideas? – palm snow Jan 3 at 20:48
feedback

In order for IIS Express answer on any IP address, just leave the address blank, i.e:

bindingInformation=":8080:"

Don't forget to restart the IIS express before the changes can take place.

link|improve this answer
IIS Express must run as Administrator to bind to anything but localhost. If launching from VS 2010, run VS 2010 as Administrator. – Eric J. Apr 19 at 21:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.