具有虚拟目录的Azure AppService NodeJ

时间:2019-01-30 16:43:00

标签: node.js angular azure web-config

我有一个基于Angular7构建的网站,并在Azure应用服务上部署了服务器端渲染。为了使server.js运行,我必须添加一个web.config文件。 这是web.config文件

<?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>
        <!-- Do not interfere with requests for node-inspector debugging -->
        <rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
          <match url="^server.js\/debug[\/]?" />
        </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="server.js"/>
        </rule>
      </rules>
    </rewrite>    
    <security>
      <requestFiltering>
        <hiddenSegments>
          <remove segment="bin"/>
        </hiddenSegments>
      </requestFiltering>
    </security>
    <httpErrors existingResponse="PassThrough" />
    </system.webServer>
    </configuration>

此站点已部署到mysite.com,并且一切正常。

我现在需要创建一个虚拟目录mysite.com/app来容纳其他应用程序(在旧的AngularJS上)。没有服务器端渲染,我只是在Azure门户上创建虚拟目录,一切正常。由于服务器端和对server.js的“重定向”,虚拟目录不再起作用。 在web.config文件中是否有任何规则可以忽略/ app的请求,而不是运行nodejs服务器?

1 个答案:

答案 0 :(得分:0)

我收到了另一个question的回复(贷记为dana),所以我刚刚添加了规则

<rule name="ignore app application" stopProcessing="true">
    <match url="^app" />
    <action type="None" />
</rule>

在其他规则之前。这样,如果键入的url为mysite.com/app,则不会“激活”节点服务器,并且虚拟目录将按预期工作。