Внутренняя ошибка сервера Azure Node.js из файла index.js - PullRequest
0 голосов
/ 27 сентября 2018

У меня есть приложение Node.js, работающее локально, однако я потратил довольно много времени, пытаясь выяснить, как его развернуть в Azure, с помощью бесчисленных учебных пособий и официальных руководств.Тем не менее, я продолжаю получать следующую ошибку «Страница не может быть отображена, потому что произошла внутренняя ошибка сервера.», Которая, как я полагаю, вызвана моим файлом index.js.Мое приложение состоит только из index.js, packagage.json и файла main.html.

Не могли бы вы взглянуть на мои файлы index.js и package.json ниже, чтобы увидеть, можете ли вы обнаружить какие-либоошибки?Я ценю вашу помощь.

index.js

var express = require('express');
var app = express();


app.render('main', function(err, html) {
console.log(html)
});


var port = process.env.PORT || 1337;
server.listen(port);
console.log("Server running at http://localhost:%d", port);

package.json

{
"name": "myLocalProj",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"ejs": "^2.6.1",
"express": "^4.16.3",
"path": "^0.12.7"
}
}

Еще раз спасибо.

1 Ответ

0 голосов
/ 28 сентября 2018

Похоже, что вы не публикуете полный фрагмент кода в вопросе, поэтому я использую шаблон для отображения main.html при посещении корневого URL-адреса веб-сайта Azure.

var express = require('express');
var app = express();

app.set('views', __dirname);
app.set('view engine', 'html');
app.engine('html', require('ejs').renderFile);

// This method only prints main.html in console
app.render('main', function(err, html) {
    console.log(html);
});

app.get('/', function (req, res) {
    res.render('main');
});

var port = process.env.PORT || 1337;
app.listen(port);
console.log("Server running at http://localhost:%d", port);

Чтобы приложение этого узла работалов Azure (IIS) нам нужен файл web.config.

<?xml version="1.0" encoding="utf-8"?>
<!--
     This configuration file is required if iisnode is used to run node processes behind
     IIS or IIS Express.  For more information, visit:

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

<configuration>
  <system.webServer>
    <!-- Visit http://blogs.msdn.com/b/windowsazure/archive/2013/11/14/introduction-to-websockets-on-windows-azure-web-sites.aspx for more information on WebSocket support -->
    <webSocket enabled="false" />
    <handlers>
      <!-- Indicates that the server.js file is a node.js site to be handled by the iisnode module -->
      <add name="iisnode" path="index.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="^index.js\/debug[\/]?" />
        </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"/>
        </rule>
      </rules>
    </rewrite>

    <!-- 'bin' directory has no special meaning in node.js and apps can be placed in it -->
    <security>
      <requestFiltering>
        <hiddenSegments>
          <remove segment="bin"/>
        </hiddenSegments>
      </requestFiltering>
    </security>

    <!-- Make sure error responses are left untouched -->
    <httpErrors existingResponse="PassThrough" />

    <!--
      You can control how Node is hosted within IIS using the following options:
        * watchedFiles: semi-colon separated list of files that will be watched for changes to restart the server
        * node_env: will be propagated to node as NODE_ENV environment variable
        * debuggingEnabled - controls whether the built-in debugger is enabled

      See https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config for a full list of options
    -->
    <!--<iisnode watchedFiles="web.config;*.js"/>-->
  </system.webServer>
</configuration>

Таким образом, структура папок должна быть такой:

enter image description here

Вы не упоминаете, как вы развертываете код, я просто использую Zip Deploy для тестирования.

Создайте zip-файл со всем содержимым (включая node_modules), перейдите на https://yourwebappname.scm.azurewebsites.net/ZipDeploy и перетащите его в браузер.

Тогда приложение узла должно работать как положено.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...