IIS Express启用外部请求 - 503

时间:2013-06-11 15:39:55

标签: asp.net-mvc iis iis-express

我试图让IIS Express正常工作,以便外部用户可以查看我的MVC ASP.NET开发网站。我按照SO answer的说明进行操作,但现在使用我的外部IP地址访问网站时出现503错误,localhost仍能正常工作。

我的配置文件似乎没问题

<site name="ManagerUI" id="5">
    <application path="/" applicationPool="Clr4IntegratedAppPool">
        <virtualDirectory path="/" physicalPath="D:\Application Development\Manager\MAIN-Branch\ManagerUI\ManagerUI" />
    </application>
    <bindings>
        <binding protocol="http" bindingInformation="*:1904:" />
    </bindings>
</site>

我发现以下SO answer解决了这个问题,但它只允许它在外部地址而不是我的所有IP地址(localhost,外部地址等)上工作

<binding protocol="http" bindingInformation=":1904:your-machine-name" />

1 个答案:

答案 0 :(得分:19)

我设法解决了它,我的错误是认为你只能有一个绑定集,然后我为每个我希望服务的外部地址设置绑定,现在它都可以工作

<bindings>
    <binding protocol="http" bindingInformation=":1904:" />
    <binding protocol="http" bindingInformation=":1904:machineName" />
    <binding protocol="http" bindingInformation=":1904:10.1.10.123" />
</bindings>