Похоже, что вы скопировали содержимое файла web.config
из Using a custom web.config for Node apps
и заменили первое значение server.js
на index.js
в коде <add name="iisnode" path="index.js" verb="*" modules="iisnode"/>
.
Однако есть два других значения server.js
, которые также необходимо заменить в теге rewrite
, как показано ниже.
<rewrite>
<rules>
<!-- Do not interfere with requests for node-inspector debugging -->
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^index.js\/debug[\/]?" /> // Replace `server.js` at here
</rule>
<!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
<rule name="StaticContent">
<action type="Rewrite" url="public{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="index.js"/> // Replace `server.js` at here
</rule>
</rules>
</rewrite>
После замены всех server.js
на index.js
, чтобы перезапустить вашwebapp и обновите свою страницу в браузере, затем вы увидите, что она работает.
Примечание. Версия Node.js по умолчанию в Azure WebApp - 0.10.40
, поэтому сначала вам нужно изменить ее версию, установив *Значение 1020 * в настройках приложения, см. Мой ответ для SO SO Версия Azure NodeJS , чтобы узнать, как это сделать.