Questions tagged [cloudflare]

Cloudflare is a content delivery network and distributed Domain Name Server service aimed at enhancing website performance and speed and providing security.

Cloudflare is a content delivery network Domain Name Server service aimed at enhancing website performance and speed and providing security. It is also known for the internet security services that it distributes.

Wiki article

3109 questions
16
votes
3 answers

Getting [email protected] when trying to display eamil using collection_select

I am using Ruby 1.8.7 with Rails 2.3.9. When creating a drop down of email addresses using collection select, the emails addresses are not displaying. Instead I am seeing "[email protected]" in the drop down. Is there some switch that is causing…
Nicolo77
  • 1,825
  • 4
  • 24
  • 34
16
votes
2 answers

Forwarding emails when using Google Domains and Cloudflare

I have recently acquired a domain name via Google Domains. I have set some configuration to have it point at an OpenShift application via Cloudflare. Cloudflare requires me to set their DNS servers, which I did in Google Domain. At Cloudflare, I…
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
15
votes
3 answers

How does Cloudflare detect that I am a bot even though I have provided the cf_clearance cookie?

How does Cloudflare even know that this request came from a script even if I provided all the data, cookies and parameters when making a normal request? What does it check for? Am I doing something wrong? For example (I have redacted some of the…
Anm
  • 447
  • 4
  • 15
15
votes
2 answers

Cloudflare Workers - SPA with Vuejs

Hello I have deployed my Vue.js app to Cloudflare workers using the following commands: wrangler generate --site wrangler publish --env dev This is my wrangler.toml: account_id = "xxx" name = "name" type = "webpack" workers_dev =…
Marcos Aguayo
  • 6,840
  • 8
  • 28
  • 61
15
votes
2 answers

Difference between Cloudflare CDN and NGINX

I am reading but having hard time understand difference between the two. I am using Heroku for my apps and until now I was using NGINX to serve my content. I precompressed my static files to gzip and served them like that, turning off dynamic…
Igor-Vuk
  • 3,551
  • 7
  • 30
  • 65
15
votes
6 answers

PHP https check with flexible ssl (cloudflare), how to do?

Background: Website (example.com), dns setup through cloudflare pro plan, this offers "flexible ssl" (read here), which means that ssl only exists between client and cloudflare and not between cloudflare and server, thus not needing dedicated ip and…
decay
  • 612
  • 6
  • 19
14
votes
2 answers

Configure Cloudflare to point to AWS Amplify

I use Cloudflare to generate SSL and AWS Amplify to host the project. I would like to configure Cloudflare to point to AWS Amplify project. These are the current DNS records, which points to the current server. This is the project URL and the URL…
Matt
  • 8,195
  • 31
  • 115
  • 225
14
votes
3 answers

Workaround for Heroku no longer supporting SSL behind Cloudflare ("Strict TLS in CDN not supported")?

A few days ago we received the error "Strict TLS in CDN not supported" on 1 Heroku app that's behind Cloudflare's proxy (orange cloud, if you know Cloudflare). Basically, client requests to https://foo.example.com are proxied through Cloudflare, who…
Charlie Schliesser
  • 7,851
  • 4
  • 46
  • 76
14
votes
4 answers

Is there any possible ways to bypass cloudflare security checks?

We all know, sometimes cloudflare like to check their client visitor to make sure that the visitor isn't a real human. The security check require us to pass Google Recaptcha. What i want to ask is it possible to pass that in using our own server…
Andra
  • 1,282
  • 2
  • 11
  • 34
14
votes
3 answers

GitLab Pages custom domain allow www

What do I need to do in order for my GitLab pages site (Jekyll) to be accessed under www.mydomain.com not just mydomain.com? I have SSL through CloudFlare. In my DNS I have: mydomain.com A 104.208.235.32 and CNAME points to myname.gitlab.io, and…
evan
  • 954
  • 3
  • 18
  • 37
14
votes
2 answers

Why do I get a malformed JSON in request body in this cURL call?

I have been trying to call the CloudFlare API v4, using an example provided in their own documentation. This is the code of the example curl -X PUT…
Frank.Lowell
  • 165
  • 1
  • 1
  • 6
14
votes
5 answers

Get Cloudflare's HTTP_CF_IPCOUNTRY header with javascript?

There are many SO questions how to get http headers with javascript, but for some reason they don't show up HTTP_CF_IPCOUNTRY header. If I try to do with php echo $_SERVER["HTTP_CF_IPCOUNTRY"];, it works, so CF is working just fine. Is it possible…
Badr Hari
  • 8,114
  • 18
  • 67
  • 100
14
votes
1 answer

Google Analytics showing real time visitors, but none in Audience report since using CloudFlare

First of all i'd like to say i really like CloudFlare! The only thing i cannot get my head around is that Google Analytics does not show any visits in the Audience report. While it DOES show real time visitors. The Audience report from yesterday…
CageD
  • 141
  • 1
  • 6
13
votes
5 answers

How to bypass Cloudflare bot protection in selenium

I need to grab some information from a site just for education purpose, however i cannot send requests because of the protection. I get The typical Checking-your-browser page shows up first and then i'm being redirected repeatedly. how i can bypass…
Mahdi Akrami
  • 466
  • 1
  • 4
  • 12
13
votes
3 answers

CloudFlare JS challenge is breaking my SPA

I have a React based SPA that is hosted via S3 on one subdomain, react.mydomain.com ... It communicates with a PHP REST API that is hosted on a VPS on another subdomain, api.mydomain.com . The api.mydomain.com is behind CloudFlare. The webapp is…