NodeJS в Azure: систематическая ошибка 404 в файлах ресурсов - PullRequest
0 голосов
/ 11 марта 2019

у нас есть веб-приложение nodeJS в Azure, которое отлично работает.

При потоковой передаче журналов сервера при каждой загрузке страницы я получаю кучу 404 ошибок на всех ресурсах (изображения, CSS и т. Д.). Тем не менее, страница отображается правильно.

Подробные ошибки показывают следующее:

Requested URL      https://[myappname]:80/settings.png
Physical Path      D:\home\site\wwwroot\settings.png
Logon Method       Anonymous
Logon User     Anonymous

Запрашиваемый URL явно неверен, он должен быть https://[myappname].azurewebsites.net/settings.png,, который является общедоступным URL для указанных ресурсов и работает нормально. Эта проблема загружает огромное количество журналов и делает невозможным использование журналов веб-сервера.

спасибо!

Редактировать : в отличие от этой проблемы , мои страницы загружаются правильно и файлы ресурсов хорошо доступны.

Решено Я добавил следующий обработчик в мой web.config:

<add name="UrlRoutingModule-4.0" path="*" verb="*" type="System.Web.Routing.UrlRoutingModule" preCondition="" />

Ответы [ 2 ]

0 голосов
/ 12 марта 2019

спасибо за ваш ответ.

У меня есть почти тот же файл web.config, сгенерированный автоматически.В указанном вами правиле есть небольшая разница:

    <rule name="StaticContent">
      <action type="Rewrite" url="public{PATH_INFO}"/>
    </rule>

Код моего сервера включает в себя:

app.use(express.static(path.join(__dirname, 'public')));
0 голосов
/ 12 марта 2019

Я считаю, что вам нужно настроить набор правил в вашем файле web.config для статического содержимого файла.

 <rule name="StaticContent">
                         <action type="Rewrite" url="public{REQUEST_URI}"/>
                    </rule>

Приложения Node.js, работающие в веб-приложениях Azure, размещаются в IIS через IISNode. Итак, файл web.config необходим для настройки приложения на IIS. Если вы развернете свое приложение в службе приложений Azure через Непрерывное развертывание , файл web.config будет автоматически создан Azure. Или вы можете скачать файл отсюда.

Я публикую стандартный 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 app.js file is a node.js site to be handled by the iisnode module -->
               <add name="iisnode" path="app.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="^app.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="app.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

               To debug your node.js application:
                 * set the debuggingEnabled option to "true"
                 * enable web sockets from the portal at https://manage.windowsazure.com/#Workspaces/WebsiteExtension/Website/aarontestnode/configure
                 * browse to https://aarontestnode.azurewebsites.net/app.js/debug/

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

Надеюсь, это поможет.

...