Skip to content

Enable Cors on Any Host #62

Answered by scottoffen
seikosantana asked this question in Q&A
Discussion options

You must be logged in to vote
sever.UseCorsPolicy();

This adds OnRequest middleware that does the following for all incoming requests:

context.Response.AddHeader("Access-Control-Allow-Origin", "*");
context.Response.AddHeader("Access-Control-Allow-Headers", "X-Requested-With");

There are additional extensions that take parameters that allow you to configure the CORS policy to your liking, but this approach does the wild card CORS, which is what I think you're asking about.

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@seikosantana
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by scottoffen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants