Created
December 19, 2014 14:01
-
-
Save kelindar/41d404f4f2e44e5fed08 to your computer and use it in GitHub Desktop.
Spike Engine: CORS Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Service.Cors.AllowMethods | |
| = "POST,GET,PUT,DELETE,OPTIONS"; | |
| Service.Cors.AllowHeaders | |
| = "X-Requested-With,Content-Type"; | |
| Service.Cors.AllowOrigin = "*"; | |
| Service.Cors.AllowCredentials = true; | |
| Service.Cors.Enabled = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment