Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ruichuang/c23b0a8915ecccd9ce27bba045786418 to your computer and use it in GitHub Desktop.

Select an option

Save ruichuang/c23b0a8915ecccd9ce27bba045786418 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation batch="false" />
</system.web>
<system.webServer>
<handlers>
<add name="iisnode" path="server.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<rule name="myapp">
<match url="/*" />
<action type="Rewrite" url="server.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