I created a simple web API in VS2015 which I'd like to test on my phone, however, I'm not able to access this API through my private IP address, only via localhost:PORT.
I have read some suggestions which were saying to modify bindings
in applicationhost.config
file, but in this file, under <sites>
I only have one site called WebSite1 which is not my web API I'm testing, therefore modifying bindings in there makes no difference.
What should I make so that my web API is added to applicationhost.config
's <sites>
collection so I can make it bind to my private LAN address which I can then access with my phone?
Thanks