12-08-2018, 12:44 PM
Hi Bob. In IW15 you can configure it like in IIS. Look in ServerController -> HttpSysOptions and set:
Leave it on Port := 80;
To test your application are listening on that VirtualHostName you provided, open powershell (on windows) and execute:
It's show you a list off all your bindings/VirtualHostNames. Search for you IWhttp.sys list, listening on SAME port IIS (80 / 443).
Code:
AddDefaultBind := False;
HostWildcard := hwWeak;
VirtualHostName := 'subdomain1.domain.com; subdomain2.domain.com; subdomain3.domain.com';Leave it on Port := 80;
To test your application are listening on that VirtualHostName you provided, open powershell (on windows) and execute:
Code:
>netsh [enter]
netsh>http show servicestate [enter]It's show you a list off all your bindings/VirtualHostNames. Search for you IWhttp.sys list, listening on SAME port IIS (80 / 443).

