-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With this update, refreshing pages or navigating directly to different routes in your SPA should now work correctly without causing a 404 error.
- Loading branch information
1 parent
250556d
commit 63a52da
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
This configuration file is required if iisnode is used to run node processes behind | ||
IIS or IIS Express. For more information, visit: | ||
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config | ||
--> | ||
|
||
<configuration> | ||
<system.webServer> | ||
<!-- Visit http://blogs.msdn.com/b/windowsazure/archive/2013/11/14/introduction-to-websockets-on-windows-azure-web-sites.aspx for more information on WebSocket support --> | ||
<webSocket enabled="false" /> | ||
<handlers> | ||
<!-- Indicates that the server.js file is a node.js site to be handled by the iisnode module --> | ||
<add name="iisnode" path="index.js" verb="*" modules="iisnode"/> | ||
</handlers> | ||
<rewrite> | ||
<rules> | ||
<!-- Do not interfere with requests for node-inspector debugging --> | ||
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true"> | ||
<match url="^index.js\/debug[\/]?" /> | ||
</rule> | ||
|
||
<!-- First we consider whether the incoming URL matches a physical file in the /public folder --> | ||
<rule name="StaticContent"> | ||
<action type="Rewrite" url="public{PATH_INFO}"/> | ||
</rule> | ||
|
||
<!-- All other URLs are mapped to the node.js site entry point --> | ||
<rule name="DynamicContent"> | ||
<conditions> | ||
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True"/> | ||
</conditions> | ||
<action type="Rewrite" url="index.js"/> | ||
</rule> | ||
|
||
<!-- New rule to handle SPA routing --> | ||
<rule name="SPA Routes" stopProcessing="true"> | ||
<match url=".*" /> | ||
<conditions logicalGrouping="MatchAll"> | ||
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> | ||
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> | ||
</conditions> | ||
<action type="Rewrite" url="index.js" /> | ||
</rule> | ||
</rules> | ||
</rewrite> | ||
|
||
<!-- 'bin' directory has no special meaning in node.js and apps can be placed in it --> | ||
<security> | ||
<requestFiltering> | ||
<hiddenSegments> | ||
<remove segment="bin"/> | ||
</hiddenSegments> | ||
</requestFiltering> | ||
</security> | ||
|
||
<!-- Make sure error responses are left untouched --> | ||
<httpErrors existingResponse="PassThrough" /> | ||
|
||
<!-- | ||
You can control how Node is hosted within IIS using the following options: | ||
* watchedFiles: semi-colon separated list of files that will be watched for changes to restart the server | ||
* node_env: will be propagated to node as NODE_ENV environment variable | ||
* debuggingEnabled - controls whether the built-in debugger is enabled | ||
See https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config for a full list of options | ||
--> | ||
<!--<iisnode watchedFiles="web.config;*.js"/>--> | ||
</system.webServer> | ||
</configuration> |