我在我的系统上开发了一个ASP.Net MVC应用程序。我想通过使用以下命令将我的应用程序与公共IP绑定来从远程计算机访问我的站点,
netsh http add urlacl url=http://192.168.1.42:3000/ user=everyone
在Visual Studio中我更新了applicationhost.config文件
<binding protocol="http" bindingInformation="*:3000:192.168.1.42" />
但是仍然没有说“服务不可用” HTTP错误503.该服务不可用。“
答案 0 :(得分:1)
在applicationhost.config文件中,必须将localhost更改为您的计算机名称。