Skip to content

Instantly share code, notes, and snippets.

@eduardocalazansjr
Created November 8, 2017 18:53
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 eduardocalazansjr/1579a4fe739611e6e358e99cc503b584 to your computer and use it in GitHub Desktop.
Save eduardocalazansjr/1579a4fe739611e6e358e99cc503b584 to your computer and use it in GitHub Desktop.
CORS IIS 7
<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