Skip to content

Instantly share code, notes, and snippets.

@giridharprakash
Created February 14, 2017 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giridharprakash/1828f04f3a604ecda67299621ef00388 to your computer and use it in GitHub Desktop.
Save giridharprakash/1828f04f3a604ecda67299621ef00388 to your computer and use it in GitHub Desktop.
node web application deployment to IIS. this is for blog post.
<configuration>
<system.webServer>
<handlers>
<add name="iisnode" path="app.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<rule name="sample">
<match url="/*" />
<action type="Rewrite" url="app.js" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment