Как настроить web.conf, чтобы разрешить анонимную аутентификацию на Rest API на сервере? - PullRequest
0 голосов
/ 29 октября 2018

Итак, я настроил js Rest API для получения запроса POST от json в Azure. Запрос POST работает локально, когда я запускаю его на консоли Azure, но удаленный доступ к нему невозможен.

Глядя на журнал ошибок, он подтверждает, что это проблема с разрешением

<li>Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.</li>     
<li>Check the event logs to see if any additional information was logged.
</li>   <li>Verify the permissions for the DLL.</li>    
<li>Install the .NET Extensibility feature if the request is mapped to a managed handler.</li>  
<li>Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click 
<a href="http://go.microsoft.com/fwlink/?LinkID=66439">here</a>.

Однако я пытаюсь настроить свой web.config, чтобы он заработал. В настоящее время это выглядит так:

    <!-- 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" />

<!--
-->
<!--<iisnode watchedFiles="web.config;*.js"/>-->

Я новичок в этом, я пытался изменить на не требующийся без успеха. Я также включил анонимную аутентификацию в Azure. «У пользователя не будет запроса на вход». Есть идеи или предложения?

Заранее спасибо

...