我们目前在Windows WebApp上部署Node.js应用程序时遇到了一些麻烦,我们怀疑问题出在web.config文件中。
这是项目目录结构:
我们正在使用默认的web.config并进行一些更改: 应用程序文件为 app.js ,公用文件夹为 dist /
<?xml version="1.0" encoding="utf-8"?>
<!--
This configuration file is required if iisnode is used to run node processes behind
IIS or IIS Express. For more information, visit:
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config
-->
<configuration>
<system.webServer>
<!-- Visit http://blogs.msdn.com/b/windowsazure/archive/2013/11/14/introduction-to-websockets-on-windows-azure-web-sites.aspx for more information on WebSocket support -->
<webSocket enabled="false" />
<handlers>
<!-- Indicates that the server.js file is a node.js site to be handled by the iisnode module -->
<add name="iisnode" path="app.js" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<!-- Do not interfere with requests for node-inspector debugging -->
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^app.js\/debug[\/]?" />
</rule>
<!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
<rule name="StaticContent">
<action type="Rewrite" url="dist{REQUEST_URI}"/>
</rule>
<!-- All other URLs are mapped to the node.js site entry point -->
<rule name="DynamicContent">
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/>
</conditions>
<action type="Rewrite" url="app.js"/>
</rule>
</rules>
</rewrite>
<!-- 'bin' directory has no special meaning in node.js and apps can be placed in it -->
<security>
<requestFiltering>
<hiddenSegments>
<remove segment="bin"/>
</hiddenSegments>
</requestFiltering>
</security>
<!-- Make sure error responses are left untouched -->
<httpErrors existingResponse="PassThrough" />
<!--
You can control how Node is hosted within IIS using the following options:
* watchedFiles: semi-colon separated list of files that will be watched for changes to restart the server
* node_env: will be propagated to node as NODE_ENV environment variable
* debuggingEnabled - controls whether the built-in debugger is enabled
See https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config for a full list of options
-->
<!--<iisnode watchedFiles="web.config;*.js"/>-->
</system.webServer>
</configuration>
目前,IIS重写模块正在向网址添加 dist / ,如下所示:http://xxxxxxx.azurewebsites.net/dist/
我们有一个iisnode错误消息:
HRESULT:0x2
HTTP状态:500
HTTP subStatus:1001
HTTP原因:内部服务器错误
我尝试检查失败的请求跟踪日志,但没有记录失败的请求。
有人可以告诉我案件中发生了什么事吗?
我决定从头开始创建一个新的Web应用程序。
我使用kudu控制台构建了node.js应用程序,并且(使用相同的web.config)服务器现在正确地获取 dist / 中的 index.html 文件
到目前为止一切顺利,我们正确登陆登录页面。
现在的问题是iisnode无法使用用户凭据处理POST请求。
正如Julien建议的那样,我尝试更改应用程序的虚拟目录并出现了不同的错误:
第一例: 虚拟目录: /
路径:网站\ wwwroot
错误:与上述相同的iisnode错误
虚拟目录: /
路径:网站\ wwwroot \ dist
错误:您要查找的资源已被删除,名称已更改或暂时无法使用。
对此有何看法?
谢谢
答案 0 :(得分:1)
实际上,您的web.config
是正确的。
您可以尝试使用以下最小的Node.js应用替换app.js的内容,看它是否有效。
var http = require('http');
var server = http.createServer(function(req, res) {
res.writeHead(200);
res.end('Hello Azure');
});
server.listen(process.env.PORT);
重要提示:在Azure Web服务上运行时,请使用process.env.PORT
作为脚本中的端口。
答案 1 :(得分:0)