I have an ASP.Net MVC application developed on my system. I want to access my site from a remote computer, binding my application to the public IP, using the following commands,
netsh http add urlacl url=http:
in Visual Studio I updated the applicationhost.config file
<binding protocol="http" bindingInformation="*:3000:192.168.1.42" />
but it still doesn’t work, saying "Service unavailable
HTTP Error 503. Service unavailable."
source
share