Reputation: 365
I have configured IIS express to work on port 80 and 443 and set up a certificate and add bindings to the configuration file.
All is working fine and as expected on my development machine.
I can access http://pete-laptop/
and https://pete-laptop
and all is good.
I want to access this from my iPhone and iPad too to check how it displays et c.
I've tried logging in with http://pete-laptop/
and https://pete-laptop
and no joy.
I've tried http://pete-laptop.local
and also my IP address. both of these options display the IIS (full) holding page (bluey greeny IIS7 logo) as it seems to be routing it to the full version of IIS rather than express.
How do I get it to route incoming traffic on pete-laptop to IIS express rather than IIS full?
I have done the following, is that not enough?
netsh http add urlacl url=http://pete-laptop:80/ user=everyone
netsh http add urlacl url=https://pete-laptop:443/ user=everyone
Upvotes: 0
Views: 205
Reputation: 9049
There might be multiple things working against you:
Next, try to set IIS-express to :. Some pointers here
Upvotes: 1