C:\Program Files (x86)\IIS Express\config
Important parts of this are the application pool, the name and the ID. The application pool has to be the same for all the sites running in IIS8 express.
The name has to be unique and the ID has to be incremented.
Allow incoming connections.
Open command prompt and add rule> netsh http add urlacl url=http://192.168.1.27:90/ user=everyone
In command prompt add a firewall rule
> netsh advfirewall firewall add rule name="IISExpressWeb" dir=in protocol=tcp localport=90 profile=private remoteip=localsubnet action=allow
If running windows authentication alter the to deny anonymous authentication and allow Windows.
Running multiple sites.
Start iisexpress from the command prompt
If running windows authentication alter the
Running multiple sites.
Start iisexpress from the command prompt
"C:\Program Files (x86)\IIS Express\iisexpress.exe" /apppool:Clr4IntegratedAppPool
No comments:
Post a Comment