Last active
November 15, 2024 14:52
-
-
Save pbaio/f63918181d8d7f8ee1d2 to your computer and use it in GitHub Desktop.
IISNode Web.config
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<appSettings> | |
<!-- | |
All appSettings are made available to your Node.js app via environment variables | |
You can access them in your app through the process.env object. | |
process.env.<key> | |
--> | |
<!-- Unconmment the below appSetting if you'd like to use a Virtual Directory --> | |
<!-- <add key="virtualDirPath" value="" /> --> | |
</appSettings> | |
<system.webServer> | |
<!-- Remove the modules element if running on IIS 8.5--> | |
<modules runAllManagedModulesForAllRequests="false"/> | |
<httpErrors existingReponse="PassThrough"></httpErrors> | |
<iisnode node_env="%node_env%" | |
nodeProcessCountPerApplication="1" | |
maxConcurrentRequestsPerProcess="1024" | |
maxNamedPipeConnectionRetry="100" | |
namedPipeConnectionRetryDelay="250" | |
maxNamedPipeConnectionPoolSize="512" | |
maxNamedPipePooledConnectionAge="30000" | |
asyncCompletionThreadCount="0" | |
initialRequestBufferSize="4096" | |
maxRequestBufferSize="65536" | |
uncFileChangesPollingInterval="5000" | |
gracefulShutdownTimeout="60000" | |
loggingEnabled="true" | |
logDirectory="iisnode" | |
debuggingEnabled="true" | |
debugHeaderEnabled="false" | |
debuggerPortRange="5058-6058" | |
debuggerPathSegment="debug" | |
maxLogFileSizeInKB="128" | |
maxTotalLogFileSizeInKB="1024" | |
maxLogFiles="20" | |
devErrorsEnabled="true" | |
flushResponse="false" | |
enableXFF="false" | |
promoteServerVars="" | |
configOverrides="iisnode.yml" | |
watchedFiles="web.config;*.js" | |
nodeProcessCommandLine="C:\Program Files\nodejs\node.exe"/> | |
<!-- | |
Before the handlers element can work on IIS 8.5 | |
follow steps listed here https://github.com/tjanczuk/iisnode/issues/52 | |
--> | |
<handlers> | |
<add name="iisnode" path="server.js" verb="*" modules="iisnode"/> | |
<!-- Uncomment below handler if using Socket.io --> | |
<!--<add name="iisnode-socketio" path="server.js" verb="*" modules="iisnode" />--> | |
</handlers> | |
<rewrite> | |
<rules> | |
<!-- Don't interfere with requests for node-inspector debugging --> | |
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true"> | |
<match url="^server.js\/debug[\/]?"/> | |
</rule> | |
<!-- First we consider whether the incoming URL matches a physical file in the /public folder --> | |
<rule name="StaticContent" patternSyntax="Wildcard"> | |
<action type="Rewrite" url="public/{R:0}" logRewrittenUrl="true"/> | |
<conditions> | |
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> | |
</conditions> | |
<match url="*.*"/> | |
</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="server.js"/> | |
</rule> | |
<rule name="SocketIO" patternSyntax="ECMAScript"> | |
<match url="socket.io.+"/> | |
<action type="Rewrite" url="server.js"/> | |
</rule> | |
</rules> | |
</rewrite> | |
<directoryBrowse enabled="false"/> | |
</system.webServer> | |
</configuration> |
Please Help me resolve this issue
iisnode encountered an error when processing the request.
HRESULT: 0x6d
HTTP status: 500
HTTP subStatus: 1013
HTTP reason: Internal Server Error
You are receiving this HTTP 200 response because system.webServer/iisnode/@devErrorsEnabled configuration setting is 'true'.
In addition to the log of stdout and stderr of the node.exe process, consider using debugging and ETW traces to further diagnose the problem.
The last 64k of the output generated by the node.exe process to stderr is shown below:
[x1B][5m[x1B][31mFailed to connect to http://sql5083.site4now.net:1433 - getaddrinfo ENOTFOUND http://sql5083.site4now.net[x1B][39m[x4B][24m
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, its working fine on http in IIS by setting up as instructed. On http it shows all status returned through Express Js.
However, when hosting it on https with ssl, it only returns 200 status and all other statuses 400, 300 etc are sent as 500 with default 500 message.
Any help would be appreciated