gpt4 book ai didi

node.js - 具有虚拟目录的 Azure 应用服务 NodeJ

转载 作者:太空宇宙 更新时间:2023-11-04 01:36:23 27 4
gpt4 key购买 nike

我有一个基于 Angular7 构建的网站,并在 Azure 应用服务上部署了服务器端渲染。我必须添加一个 web.config 文件才能使 server.js 运行。这是 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 服务器?

最佳答案

我在另一个 question 上得到了回复(归功于 dana)所以我刚刚添加了规则

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

在其他规则之前。这样,如果输入的网址是 mysite.com/app, Node 服务器将不会被“激活”,并且虚拟目录将按预期工作。

关于node.js - 具有虚拟目录的 Azure 应用服务 NodeJ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54445453/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com