我在 Azure 网站上运行 Node.js 0.10.15 和 Express 应用程序,当有人输入无效 URL 时发送 404 时出现问题。The page cannot be displayed because an internal server error has occurred.
当我尝试访问无效的 URL 时,我收到了一般错误。
app.js
这是发送 404 页面的文件末尾的代码:
app.get('/*', function(req, res) { res.status(404).sendfile('public/404.html'); });
奇怪的是,当我在本地运行我的服务器时,Express 似乎正确地发送了 404 以及 HTML 文件,但是当它在 Azure 上运行时,它阻塞并且没有给我一个有用的错误。日志显示该请求按预期工作:
[Thu, 24 Oct 2013 01:10:39 GMT] "GET /asdfsadf HTTP/1.1" 404 - "-" "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36"
我怀疑问题出在我的web.config
文件中:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpErrors existingResponse="PassThrough" />
<staticContent>
<mimeMap fileExtension=".svg" mimeType="image/svg+xml" />
<mimeMap fileExtension=".woff" mimeType="application/x-woff" />
<mimeMap fileExtension=".ttf" mimeType="application/x-woff" />
</staticContent>
<handlers>
<add name="iisnode" path="app.js" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<rule name="DynamicContent">
<match url="/*" />
<action type="Rewrite" url="app.js"/>
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
我还使用文件打开了日志记录iisnode.yml
:
loggingEnabled: true
devErrorsEnabled: true
此外,您可以在GitHub 上查看我的开发工作分支