What's the best way to simplify self-hosting static sites? Is there some sort of Netlify for self-hosting that also integrates with selected CDNs or similar?
I’ve been actually looking for some of these myself.
The two that I’ve used are cloudflare pages and bunny storage.
Cloudflare integrates with git and even runs builds for multiple static website frameworks (hugo, 11ty, etc)
Bunny storage is a bit clunkier when it comes to setting a ci/cd since it has nothing to support it. One can upload via ftp, web browser or API. And after uploading usually purging the cdn cache is needed to apply the changes.
I still prefer bunny because cloudflare give pages for “free”, which I don’t trust.
True, was also considering this. Just thought having a CDN would be useful at some points (e.g. to compress/resize images, generate source sets of images automatically)
As the others said, you could simple use github pages, or if you want to have more features you can try different alternatives which relies on self hosting
The two that I’ve used are cloudflare pages and bunny storage.
Cloudflare integrates with git and even runs builds for multiple static website frameworks (hugo, 11ty, etc)
Bunny storage is a bit clunkier when it comes to setting a ci/cd since it has nothing to support it. One can upload via ftp, web browser or API. And after uploading usually purging the cdn cache is needed to apply the changes.
I still prefer bunny because cloudflare give pages for “free”, which I don’t trust.