Remix.run Logo
Cloudflare error page generator(github.com)
49 points by sawirricardo 8 hours ago | 6 comments
hk1337 7 hours ago | parent [-]

Can you actually customize that Cloudflare error page? I thought that was their error page when they lose connection with your site and custom error pages was just the ones your app creates, like 404, 403, etc?

zamadatix 7 hours ago | parent | next [-]

I think the intent is for joke pages, like the demo link which acts like error 500 saying the host is on fire etc but really serves as 200 OK, not your actual Cloudflare service errors.

esseph 6 hours ago | parent | prev [-]

On free plans you can't, on business/enterprise plans you can.

Edit: Gemini says you could make a custom worker and do a 5XX redirect that way, but I haven't tried it. Does make sense though.

ascorbic 2 hours ago | parent | next [-]

This works for errors at the origin or in a Worker, but won't for errors at the edge, because those are in front of Workers.

thewisenerd 5 hours ago | parent | prev [-]

the custom error page is configurable at a domain (zone) level

which sometimes gets annoying because branding for subdomains could be different.

https://developers.cloudflare.com/rules/custom-errors/edit-e...

esseph 3 hours ago | parent [-]

> Error Pages do not apply to responses with an HTTP status code of 500, 501, 503, or 505. These exceptions help avoid issues with specific API endpoints and other web applications. You can still customize responses for these status codes using Custom Error Rules.

From that page ;)