Skip to content

Instantly share code, notes, and snippets.

@alexjamesbrown
Created March 14, 2019 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexjamesbrown/b8e8b0dda4f3903882caab0e01adc099 to your computer and use it in GitHub Desktop.
Save alexjamesbrown/b8e8b0dda4f3903882caab0e01adc099 to your computer and use it in GitHub Desktop.
disable urlCompression for Azure Functions via xdt transform
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<system.webServer>
<urlCompression xdt:Transform="Remove" />
<urlCompression doStaticCompression="false" doDynamicCompression="false" xdt:Transform="InsertIfMissing" />
</system.webServer>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment