Skip to content

Instantly share code, notes, and snippets.

@walkermatt
Created August 15, 2014 10:28
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save walkermatt/637df93121a409faab6a to your computer and use it in GitHub Desktop.
Save walkermatt/637df93121a409faab6a to your computer and use it in GitHub Desktop.
Enable CORS IIS7
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Origin" value="*" />
<add name="Access-Control-Allow-Headers" value="Accept,Content-Type,X-Requested-With" />
</customHeaders>
</httpProtocol>
</system.webServer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment