Created
March 3, 2017 06:40
-
-
Save MongkonEiadon/ed41fa2dc945387720bd78293a4f61bf to your computer and use it in GitHub Desktop.
SQLPad for IIS webconfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configuration> | |
<system.webServer> | |
<handlers> | |
<add name="iisnode" path="server.js" verb="*" modules="iisnode" /> | |
</handlers> | |
<rewrite> | |
<rules> | |
<rule name="cdw"> | |
<match url="/*" /> | |
<action type="Rewrite" url="server.js" logRewrittenUrl="true" /> | |
</rule> | |
</rules> | |
</rewrite> | |
<iisnode | |
node_env="%node_env%" | |
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="true" | |
debuggerPortRange="5058-6058" | |
debuggerPathSegment="debug" | |
maxLogFileSizeInKB="128" | |
maxTotalLogFileSizeInKB="1024" | |
maxLogFiles="20" | |
devErrorsEnabled="true" | |
flushResponse="false" | |
enableXFF="false" | |
promoteServerVars="" | |
configOverrides="iisnode.yml" | |
nodeProcessCommandLine="C:\Program Files\nodejs\node.exe"/> | |
</system.webServer> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment