Created
March 22, 2012 22:55
-
-
Save csainty/2165269 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
<configuration> | |
<system.webServer> | |
<handlers> | |
<add name="iisnode" path="app.js" verb="*" modules="iisnode" /> | |
</handlers> | |
<iisnode loggingEnabled="false" debuggingEnabled="true" debuggerPathSegment="debug" /> | |
<rewrite> | |
<rules> | |
<clear /> | |
<rule name="Debug" patternSyntax="Wildcard" stopProcessing="true"> | |
<match url="app.js/debug*" /> | |
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" /> | |
<action type="None" /> | |
</rule> | |
<rule name="app" patternSyntax="Wildcard"> | |
<match url="*" negate="false" /> | |
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" /> | |
<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