当前位置: 首页 > 工具软件 > iisnode > 使用案例 >

iisnode特定设置(web.config中管理)

巫马阳飙
2023-12-01
还有很多东西我可以配置在两个站点上,客户数量,虚拟客户,还有iisnode特定设置(都在web.config中管理):
1: <configuration>
2: <system.webServer>
3: <handlers> 
4: <add name="iisnode" path="hello.js" verb="*" modules="iisnode" /> 
5: </handlers>
6: <iisnode 
7: nodeProcessCommandLine="%systemdrive%\node\node.exe" 
8: maxProcessCountPerApplication="4"
9: maxConcurrentRequestsPerProcess="1024" 
10: maxPendingRequestsPerApplication="1024" 
11: maxNamedPipeConnectionRetry="3" 
12: namedPipeConnectionRetryDelay="2000" 
13: asyncCompletionThreadCount="4" 
14: initialRequestBufferSize="4096" 
15: maxRequestBufferSize="65536" 
16: uncFileChangesPollingInterval="5000" 
17: gracefulShutdownTimeout="60000" 
18: loggingEnabled="true" 
19: logDirectoryNameSuffix="logs" 
20: maxLogFileSizeInKB="128" 
21: appendToExistingLog="false" 
22: /> 
23: </system.webServer> 
24: </configuration>
 类似资料: