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

還有很多東西我可以配置在兩個站點上,客戶數量,虛擬客戶,還有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>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章