Solving CORS issues with Cloudflared Tunnel
Hi there,
I'm trying to forward my instance through cloudflare, but I'm unable to due to CORS errors. Setting the FRONT_BASE_URL="my.tld" doesn't seem to help, as the graphql requests seems to be coming from localhost still with the error in console being :
Blocked loading mixed active content “http://my.tld/graphql”
1 Reply
usually CORS issue are actually mixed content issues (you are trying to connect to a http server from an https frontend). Make sure that your server is served over https (you'll need to set it up using nginx for example)