33

我正在使用 Windows Azure 网站来托管 node.js 应用程序。到目前为止,除了我的自定义错误之外,一切都很好。在我的节点应用程序中,我有一个错误处理程序,可以在我的本地机器上呈现自定义 404 和自定义 500 错误页面。但是,一旦我发布到 azure,当我将 statusCode 设置为 200 以外的任何值时,它都会覆盖响应。

如果我没有将 500 或 404 statusCode 传递给响应,则不会发生这种情况,但我确实希望将状态代码发送到浏览器。在本地我得到我的自定义错误页面就好了:

但是,在 azure 网站上,它只返回一行文本:

由于发生内部服务器错误,无法显示该页面。

我尝试创建自己的 web.config 以覆盖禁用自定义错误的默认配置,但这似乎没有任何效果。这是我的 web.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <system.web>
        <customErrors mode="off" />
    </system.web>
    <system.webServer>
        <handlers>
            <add name="iisnode" path="app.js" verb="*" modules="iisnode"/>
        </handlers>
        <rewrite>
            <rules>
                <rule name="StaticContent">
                    <action type="Rewrite" url="public{REQUEST_URI}"/>
                </rule>
                <rule name="DynamicContent">
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
                    </conditions>
                    <action type="Rewrite" url="app.js"/>
                </rule>
            </rules>
        </rewrite>
        <iisnode
            debuggingEnabled="true"
            devErrorsEnabled="true"
            debuggerPathSegment="debug"
            nodeProcessCommandLine="&quot;%programfiles(x86)%\nodejs\node.exe&quot;"
            logDirectory="..\..\LogFiles\nodejs"
            watchedFiles="*.js;iisnode.yml;node_modules\*;views\*.jade;views\*.ejb;routes\*.js" />
    </system.webServer>
</configuration>

我不确定iisnode(将请求路由到 node.js 的 iis 扩展)是否负责覆盖我的错误页面,或者 iis 本身是否负责。有什么建议么?

4

2 回答 2

89

好吧,没关系,我发现了问题。<system.webServer>如果其他人遇到同样的问题,只需在 web.config下添加以下内容:

<httpErrors existingResponse="PassThrough" />
于 2013-02-28T20:56:22.907 回答
1

在 Windows azure 中托管的 MVC 项目也有类似的问题。在 IIS 下托管的本地计算机上工作正常,但在实时计算机上我收到以下错误“您要查找的资源已被删除、更改名称或暂时不可用。”

将此添加到 system.webServer 下的 Web 配置中节省了我的时间

我的 web.config 看起来像这样

<system.web>
   ***
    <customErrors mode="RemoteOnly" defaultRedirect="~/Error/PageNotFound">
      <error statusCode="404" redirect="~/Error/PageNotFound" />
      <error statusCode="500" redirect="~/Error/ServerError"/>
    </customErrors>
  </system.web>
***
<system.webServer>
    <httpErrors existingResponse="PassThrough" />
</system.webServer>
于 2015-11-20T14:12:58.427 回答