我通过 Windows Azure 网站使用 IISNode。
如果我的 Node 应用程序返回 2xx 状态代码(200、201 等),那么一切正常并按预期工作。
如果我的 Node 应用程序返回 4xx 状态代码,例如:(
response.send(404, "not found")
我正在使用 Restify)然后我收到一个 500 发送到客户端,正文只是“页面无法显示,因为发生了内部服务器错误。”
如果我这样做azure site log tail <sitename>
了,那么当 500 被发送到客户端时,日志包含 404 的 HTML。
...
<body>
<div id="content">
<div class="content-container">
<h3>HTTP Error 404.0 - Not Found</h3>
<h4>The resource you are looking for has been removed, had its name changed,
or is temporarily unavailable.</h4>
</div>
...
我真的只是想让 IISNode/IIS 接收我的 404 并将其发送到客户端。401s、409s 等也是如此。它们都会导致发送 500。
我已经尝试过<customErrors mode="off" />
并且<httpErrors existingResponse="passThrough" />
在我的 web.config 中无济于事。这是我的 web.config 现在:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<customErrors mode="off" />
</system.web>
<system.webServer>
<httpErrors existingResponse="PassThrough" />
<staticContent>
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".ico" mimeType="image/x-icon" />
</staticContent>
<handlers>
<add name="iisnode" path="server.js" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<rule name="DynamicContent">
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
</conditions>
<action type="Rewrite" url="server.js"/>
<match url="/*" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
对于它的价值,除了从我的节点应用程序返回 200 之外,我无法让 IISnode 做任何事情。试图让 IIS 为我的静态文件提供服务,启用节点检查器,或者任何更有趣的 IISNode 功能对我来说都是 500。不知道为什么,很想克服它!
类似的 StackOverflow 问题
这个问题几乎正是我的问题。除了那<httpErrors existingResponse="PassThrough" />
对我不起作用。我觉得我的 IISNode 设置有更根本的问题,所以如果有人对尝试的事情有任何想法,我会全力以赴。