|
|
|
|
|
by seanwilson
3498 days ago
|
|
I use GitHub pages with Cloudflare (free CDN + HTTPS) for simpler sites but I'm a fan of netlify.com right now. Setup is simple, atomic deploys are simple, rollbacks are simple, caching + cache invalidation + HTTPS is done for you and there's paid plans if you need passwords, form submissions and custom response headers. There's probably cheaper options compared to the paid plan at $9 a month but you have to ask yourself how much your time is worth in comparison if you're burning just 1 hour a month on configuring your hosting. Deploying over S3 sounds like a bunch of hassle to me. Can you deploy atomically? Can you rollback? |
|
The PITA is that you need Cloudfront to handle SSL and if you're not using Route53 automating the upgrade process is more complex than it should be.
> Can you deploy atomically?
Hm, I'm not sure what atomically means in this context, S3 supports 'sync' so you basically can write a bash/ruby/python script to handle deployment (I use a rake task).
> Can you rollback?
Yes, I use git (gitlab) to keep track of changes, so rolling back is not a problem.