1

我尝试使用托管在 IIS Express 7.5(通过 WebMatrix)上的 node.js 编写一个简单的站点。我想使用集成 Windows 身份验证。

我按照一些类似帖子中的描述配置了applicationhost.config 。我也配置了web.config

<system.webServer>
    <security>
        <authentication>
            <anonymousAuthentication enabled="false" />
            <basicAuthentication enabled="false" />
            <windowsAuthentication enabled="true" />
        </authentication>
    </security>
</system.webServer>

现在,当请求站点时,它会要求提供凭据。目前来说还不错。然后我提供正确的域凭据并收到错误401.1

好吧,受信任区域中的站点和 Fidler 说提供了 Kerberos 票证。

怎么了?

我检查了跟踪并收到以下错误:

<EventData>
  <Data Name="ContextId">{00000000-0000-0000-3F03-0080000000F8}</Data>
  <Data Name="ModuleName">WindowsAuthenticationModule</Data>
  <Data Name="Notification">2</Data>
  <Data Name="HttpStatus">401</Data>
  <Data Name="HttpReason">Unauthorized</Data>
  <Data Name="HttpSubStatus">1</Data>
  <Data Name="ErrorCode">2147942485</Data>
  <Data Name="ConfigExceptionInfo"></Data>
</EventData>
<RenderingInfo Culture="en-US">
<Opcode>MODULE_SET_RESPONSE_ERROR_STATUS</Opcode>
<Keywords>
  <Keyword>RequestNotifications</Keyword>
</Keywords>
<freb:Description Data="Notification">AUTHENTICATE_REQUEST</freb:Description>
<freb:Description Data="ErrorCode">The local device name is already in use. (0x80070055)</freb:Description>
</RenderingInfo>

好的,然后我试图找出问题几个小时,只发现如果从 web.config中删除规则或URL 重写模块

    <rewrite>
        <rules>
            <!-- Don't interfere with requests for logs -->
            <rule name="LogFile" patternSyntax="ECMAScript" stopProcessing="true">
                <match url="^[a-zA-Z0-9_\-]+\.js\.logs\/\d+\.txt$" />
            </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 application entry point -->
            <rule name="DynamicContent">
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                </conditions>
                <action type="Rewrite" url="app.js" />
            </rule>
        </rules>
    </rewrite>

那么一切都会很好(除了正确处理app.js)

那么,问题是如何保留 WebMatrix 的原始 node.js 模板并在没有此类错误的情况下使用 Windows 身份验证?

另一个问题是如何获取 node.js 中 IIS 模块管道收集的所有上下文信息?

4

1 回答 1

1

从 iisnode v0.1.13 开始,IIS 管道收集的信息不会暴露给 node.js 应用程序。这是一个已知限制,将由https://github.com/tjanczuk/iisnode/issues/87https://github.com/tjanczuk/iisnode/issues/94解决。

使用重写规则时的身份验证问题需要调查;创建https://github.com/tjanczuk/iisnode/issues/127

于 2011-12-21T18:27:05.583 回答