Hello
I have using Nginx & Varnish & Apache but can't find solution to fix CORS problem.
I have add in apache vhosts
Header set Access-Control-Allow-Origin "*"
In nginx vhosts config
add_header 'Access-Control-Allow-Origin' '*';
In php script
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Credentials: true"
What i'm missing, where can be problem and why i have "CORS Missing Allow Origin" error constantly?