Skip to content

Instantly share code, notes, and snippets.

@hnrchrdl
hnrchrdl / web.config
Last active April 5, 2018 08:10 — forked from KristofferBerge/web.config
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>