Skip to content

Instantly share code, notes, and snippets.

@hnrchrdl
Forked from KristofferBerge/web.config
Last active April 5, 2018 08:10
Show Gist options
  • Save hnrchrdl/a8b3cf2f56f4f330640032fd0d93626a to your computer and use it in GitHub Desktop.
Save hnrchrdl/a8b3cf2f56f4f330640032fd0d93626a to your computer and use it in GitHub Desktop.
Configuration file for Azure web app to support angular2 applications with routing and long urls for auth tokens and woff/woff2 files.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<httpRuntime maxQueryStringLength="32768" maxUrlLength="65536"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="32768"/>
</requestFiltering>
</security>
<rewrite>
<rules>
<rule name="Angular" stopProcessing="true">
<match url="^(?!.*(.chunk.js|.bundle.js|.bundle.map|.bundle.js.gz|.bundle.css|.bundle.css.gz|.png|.jpg|.ico)).*$" />
<conditions logicalGrouping="MatchAll"></conditions>
<action type="Rewrite" url="/" appendQueryString="true" />
</rule>
</rules>
</rewrite>
<staticContent>
<mimeMap fileExtension="woff" mimeType="application/font-woff" />
<mimeMap fileExtension="woff2" mimeType="application/font-woff" />
</staticContent>
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment