Error Try the suggestions in this Community Tip to help you fix Error 526: Invalid SSL certificate. Background Error 526 indicates Cloudflare is unable to successfully validate the SSL certificate on the origin web server and the SSL setting in the Cloudflare SSL/TLS app is set to Full SSL (Strict) for the website. When this happens, you’ll s...
I am implmenting auth for my workers based site. For implmenting a session store, should I use KV or DOs? I read somewhere that as KVs are more akin to CDNs, they do not make good session store. Can someone enlighten me here
I personally prefer DOs for everything over KV, and for larger items I would still use R2 with cache before KV probably.
The biggest plus that KV has over DOs/R2 is the fact that KV is replicated to 2 storage nodes one in the US and one in the EU so cold reads can be faster on KV. But for a session store DOs will always be faster than KV since you can create an obejct per customer using DOs which means the object will be created close to the user.
One of the Cloudflare domains I manage says I assigned the nameservers correctly, but no records are being served yet (it has been more than 48+ hours). I am unsure what to check to find the issue. Cloudflare also says "Registrar: Unknown"
When I load the dashboard page for the domain, there is a brief flash that tells me congrats, Cloudflare is protecting the site. And then the statistics appear. The DNS management page is not complaining that the nameservers are not assigned
So, Snippets can access the Cache API, that means the Snippets code can do some decisions based of the Cache API content. Do you plan to have a flag / return code / special header / etc, that could inform CF to not continue to the normal process (prevent calling a Worker) ?
Ideally that could be even better to permit us to choose another Worker (for example to switch from a v1 to a v2 of a project)
probably a weird question; I want to use D1 for my apps db. I was wondering there are any benefits/cons to keeping my posts table in one db and the users table in another? I want to optimize for space used in each db.
Thanks @dave | ai.moda - I've build several out over the years, but mostly running on Azure with DB backend. The cost is pure crazy when you add up identity servers and all the rest of it. Although I've never used it, Firebase looks to be the most cost effective solution I've found with a backing store, JWT token support along with change events etc. I was hoping it was just something else the CF had built out, so I could keep it all together with the app. All good though - I'm sure it's in the works somewhere, it certainly would be a welcome service if they could keep the costs managed as well.
Fair enough. I've not looked into it to be able to comment. Thus far I've found CF pricing pretty compelling in most areas. Is it out of alignment with industry pricing or just generally expensive?
Pre-warning Microsoft are merging Azure AD B2C with another product at the moment… plus you need to understand Microsoft’s proprietary XML framework to build custom identity solutions like Passwordless login, etc.