Fix cors
This commit is contained in:
parent
553d386e85
commit
8d4dc1b414
1 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,11 @@ if(ini_get('max_file_uploads') < 50) {
|
||||||
throw new Exception("php directive 'max_file_uploads' should be >= 50");
|
throw new Exception("php directive 'max_file_uploads' should be >= 50");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header("Access-Control-Allow-Origin: https://emotionhero.com");
|
||||||
|
header("Access-Control-Allow-Methods: POST, GET, OPTIONS");
|
||||||
|
header("Access-Control-Allow-Headers: X-PINGOTHER");
|
||||||
|
header("Access-Control-Max-Age: 1728000");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* JWT setup
|
* JWT setup
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue