Skip to content

Instantly share code, notes, and snippets.

@pmanijak
Last active December 19, 2015 08:29
Show Gist options
  • Save pmanijak/5926388 to your computer and use it in GitHub Desktop.
Save pmanijak/5926388 to your computer and use it in GitHub Desktop.
iisnode with express web.config file
<configuration>
<system.web>
</system.web>
<system.webServer>
<handlers>
<add name="iisnode" path="app.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<rule name="Catch All">
<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