如何使用 Windows Server 2019 在 IIS 10 上托管 Node JS 应用程序

How to host Node JS app on IIS 10 with Windows Server 2019

我已经配置了所有 iisnode 所需的东西。但是当我通过 http://localhost/Backend 浏览网站时(后端是一个托管在 iis 上的网站名称)然后什么都没有发生并且页面一直在加载。

我的web.config:

    <?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
        <add name="iisnode" path="index.js" verb="*" modules="iisnode" />
    </handlers>
    <rewrite>
        <rules>
                <rule name="nodejs">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" pattern="" ignoreCase="true" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="/index.js" />
                </rule>
        </rules>
    </rewrite>
    <security>
    <requestFiltering>
        <hiddenSegments>
            <add segment="node_modules" />
        <add segment="iisnode" />
        </hiddenSegments>
    </requestFiltering>
    </security>
    </system.webServer>
</configuration>

尝试通过高级设置将Application Pools-> Idle Time-Out 设置为“0”,并检查确切的问题是什么。确保安装了 iisnode 模块。

iisnode 模块表明index.js 文件是一个node.js 应用程序,由iisnode 模块处理。

link:

https://forums.asp.net/t/2145697.aspx?deploy+nodejs+web+api+in+IIS+server

https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config