我试图在同一个Azure App Service实例中并行运行多个Node.js应用程序。我尝试为每个Node.js应用程序制作一个虚拟应用程序,但不断出现服务器错误(代码500)。我使用ZipDeploy或Azure DevOps部署我的应用程序。
我怀疑问题可能是与我的应用程序关联的 web.config 文件不正确。
以下是我的设置的一些详细信息:
在我的App Service实例的应用程序设置菜单中,我转到了虚拟应用程序和目录设置,并放置了以下内容:
/ site\wwwroot Application x
/mysite1 site\wwwroot\mysite1 Application x
/mysite2 site\wwwroot\mysite2 Application x
我的 wwwroot 目录如下所示。为确保问题不是源于代码本身,我对所有三个应用程序都使用了相同的Node.js应用程序:
index.html
server.js
scripts
web.config (*)
----- mysite1
|----- index.html
|----- server.js
|----- scripts
|----- web.config (**)
----- mysite2
|----- index.html
|----- server.js
|----- scripts
|----- web.config (***)
我对其中三个使用默认的web.config文件(provided by Kudu)
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<webSocket enabled="false" />
<handlers>
<add name="iisnode" path="server.js" verb="*" modules="iisnode"/>
</handlers>
<rewrite>
<rules>
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^server.js\/debug[\/]?" />
</rule>
<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="server.js"/>
</rule>
</rules>
</rewrite>
<security>
<requestFiltering>
<hiddenSegments>
<remove segment="bin"/>
</hiddenSegments>
</requestFiltering>
</security>
<httpErrors existingResponse="PassThrough" />
</system.webServer>
</configuration>
使用此配置,我可以毫无问题地到达 https://myappservice.azurewebsites.net/ ,但是 https://myappservice.azurewebsites.net/mysite1 仅返回服务器错误。
我尝试按照类似问题但没有用,从子目录(**和***)中的 web.config 文件中删除处理程序。
这三个文件的正确配置是什么?我认为重写规则需要调整,但是我不确定每个规则的确切期望值是什么。
答案 0 :(得分:1)
我终于设法通过IIS日志(Kudu上的 / LogFiles / W3SVC ... / )找出确切的问题:
ModuleName="RewriteModule", Notification="SEND_RESPONSE", HttpStatus="500", HttpReason="URL Rewrite Module Error.", HttpSubStatus="52", ErrorCode="Cannot create a file when that file already exists.
(0x800700b7)", ConfigExceptionInfo="\\?\D:\home\site\wwwroot\mysite1\web.config ( 16) :Cannot add duplicate collection entry of type 'rule' with unique key attribute 'name' set to 'NodeInspector'
"
需要更改的是子级web.config文件中的处理程序和规则名称,以便它们不会与父级web.config文件中的名称冲突。现在一切正常。
答案 1 :(得分:0)
您可以如下更改虚拟应用程序和目录设置:
/ site\wwwroot Application x
/mysite1 site\mysite1 Application x
/mysite2 site\mysite2 Application x
使用zipdeploy或DevOps进行部署时,站点名称和目标URL如下:
有关更多详细信息,请参阅Deploying multiple virtual directories to a single Azure Website。