Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions web.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<configuration>
<system.webServer>

<!-- indicates that the index.js file is a node.js application
to be handled by the iisnode module -->

<handlers>
<add name="iisnode" path="index.js" verb="*" modules="iisnode" />
</handlers>

<!-- adds index.js to the default document list to allow
URLs that only specify the application root location,
e.g. http://mysite.antarescloud.com/ -->

<defaultDocument enabled="true">
<files>
<add value="index.js" />
</files>
</defaultDocument>

</system.webServer>
</configuration>