Skip to content
FLAVIO COPES
flaviocopes.com
2026

Fix 'Too many redirects' after enabling Cloudflare proxy

By Flavio Copes

Learn how to fix the Too many redirects error after enabling the Cloudflare proxy, by switching the SSL/TLS encryption mode from Flexible to Full.

~~~

I had an Astro site on Railway and since I manage my DNS using Cloudflare, I figured I could take advantage of everything Cloudflare offers if I proxy the requests through it, instead of just using it as a DNS.

I changed my CNAME record that points to the Railway app from “DNS only” to “Proxied” but the app was not served any more by the browser, with an error saying “Too many redirects”.

The reason is that by default Cloudflare in proxy mode sends unencrypted HTTP request to the server, behind the scenes, but the app on Railway was configured to use HTTPS automatically and this caused an infinite loop of redirects.

The problem was well documented on Cloudflare’s docs.

The solution was to go in the SSL/TLS settings on that domain on Cloudflare, and switch the encryption mode from Flexible (the default) to Full.

Cloudflare dashboard SSL/TLS settings showing encryption mode options with Full mode selected

Then everything worked as expected.

Tagged: Services · All topics
~~~

Related posts about services: