1

I am using IIS and my web application is asp.net created using visual studio 2017.

To the bindings I've added both 'any available'(*) and my local IP.

I Start the website and success! I can access it via the Hostname I have set.

Unfortunately, I can't access it via the IP and neither can other machines on the network. What's going on here?

LeiMagnus
  • 253
  • 2
  • 13

1 Answers1

0

Ok, So I edited the ApplicationHost.config file

<application path="/">
    <virtualDirectory path="/" physicalPath="website-location" />
</application>

Then I got an error in the published (improvement...) web app's web.config file, which I solved using: This page about the exact issue.

LeiMagnus
  • 253
  • 2
  • 13