使用IIS Windows服务器时如何服务器静态文件

时间:2015-11-20 13:03:00

标签: iis iis-8.5 iisnode

我已尝试在this answer中遵循您的建议,但我无法正确提供静态文件。 我还看了this post中的示例,甚至this gists处的示例更完整。

可能是因为我使用了这个重写规则?

 <match url="/*" />
 <action type="Rewrite" url="bin/www" />

这允许我像这样访问我的应用程序:

  

https://localhost/node/action

而不是:

  

https://localhost/node/myapp/action

我正在使用虚拟目录名称,就好像它是应用名称一样。

这是我当前的web.config文件:

<configuration>
    <appSettings>
        <add key="virtualDirPath" value="/node" />
    </appSettings>
  <system.webServer>

    <handlers>
      <add name="iisnode" path="bin/www" verb="*" modules="iisnode" />
    </handlers>

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

        <rule name="DynamicContent">  
            <conditions> 
                <add input="{{REQUEST_FILENAME}}" matchType="IsFile" negate="True"/>  
            </conditions>  
            <match url="/*" />
            <action type="Rewrite" url="bin/www" />
         </rule> 
      </rules>
    </rewrite>

 <iisnode      
      node_env="localhost"
      nodeProcessCountPerApplication="1"
      maxConcurrentRequestsPerProcess="1024"
      maxNamedPipeConnectionRetry="100"
      namedPipeConnectionRetryDelay="250"      
      maxNamedPipeConnectionPoolSize="512"
      maxNamedPipePooledConnectionAge="30000"
      asyncCompletionThreadCount="0"
      initialRequestBufferSize="4096"
      maxRequestBufferSize="65536"
      watchedFiles="*.js;iisnode.yml"
      uncFileChangesPollingInterval="5000"      
      gracefulShutdownTimeout="60000"
      loggingEnabled="true"
      logDirectory="iisnode"
      debuggingEnabled="true"
      debugHeaderEnabled="false"
      debuggerPortRange="5058-6058"
      debuggerPathSegment="debug"
      maxLogFileSizeInKB="128"
      maxTotalLogFileSizeInKB="1024"
      maxLogFiles="20"
      devErrorsEnabled="false"
      flushResponse="false"      
      enableXFF="false"
      promoteServerVars=""
      configOverrides="iisnode.yml"
     />

  </system.webServer>
</configuration>

0 个答案:

没有答案