Ask HN: Best static web site host?
I'm trying to figure out the best place to host a static (html/php) company web site. I'm looking for a good combination of render speed, up-time, support, and price. I'm currently using shared web hosting on dreamhost and I just want to make sure that I'm not missing out on a faster host which may potentially help Google rankings. Suggestions?
10 comments
[ 2.7 ms ] story [ 31.1 ms ] threadI'm serving static HTML generated by Octopress.
You can set up rules in Cloudfront to point to different origins based on URL, so you could point at an S3 bucket for /about or /news pages, or the /images* folder, and to your PHP server for /contact or /blog. That way you have maximum uptime for all the static pages and content, and you only hit your server for stuff that absolutely needs to be dynamic.
If actually static (just html and other static files): S3 might be a better choice.