Created
April 4, 2017 20:56
-
-
Save ruichuang/c23b0a8915ecccd9ce27bba045786418 to your computer and use it in GitHub Desktop.
This file contains hidden or 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"?> | |
| <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