-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.config
26 lines (26 loc) · 1.01 KB
/
web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="VIRTUAL_DIR_PATH" value="/vortex-api" />
</appSettings>
<system.webServer>
<handlers>
<add name="iisnode" path="server.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<rule name="Debug" patternSyntax="Wildcard" stopProcessing="true">
<match url="server.js/debug*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<rule name="all">
<match url=".*" />
<action type="Rewrite" url="server.js" />
</rule>
</rules>
</rewrite>
<httpErrors existingResponse="PassThrough" />
<iisnode watchedFiles="*.js;config\*.js;iisnode.yml" debuggerExtensionDll="iisnode-inspector.dll" />
</system.webServer>
</configuration>