Skip to content

Instantly share code, notes, and snippets.

@kanreisa
Created September 24, 2014 09:41
Show Gist options
  • Save kanreisa/30d48dd4d0bad62a9cb6 to your computer and use it in GitHub Desktop.
Save kanreisa/30d48dd4d0bad62a9cb6 to your computer and use it in GitHub Desktop.
Snippets for Node on Azure Web Sites
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.webServer>
<handlers>
<add name="node-application" path="index.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<rule name="node-application">
<action type="Rewrite" url="index.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