Ask HN: Affordable and reliable hosting for static pages
21–30 of 30 posts
Re: Ask HN: Affordable and reliable hosting for static pages
#22Re: Ask HN: Affordable and reliable hosting for static pages
#23dropbox?
You can even get a $5 domain to point at your dropbox web location.
Re: Ask HN: Affordable and reliable hosting for static pages
#24Re: Ask HN: Affordable and reliable hosting for static pages
#25s3 / cloudfront
This is what I'd suggest too, with the proviso that the most likely "single point of failure" moves from being some technical decision you make to being the credit card it's paid for with. At ~3c or 7c/month it becomes easy to forget you need to update the expiry date every 3 years...
Also, VISA and MC both provide an updater service, that some payment gateways make available to some merchants. The updater service allows a merchant to ask for an update on the status of a credit card. Possible responses are: no update available; account is closed; here is the new expiration date for the card; card was replaced and here is the new number and expiration date. The service is pretty cheap. One of the card companies charges something like $150 to sign up, the other charges nothing. Queries are free if there is no updated information available, and something like $0.10 if updated information is returned. They do require that you query for all your stored cards at least once a year.
This doesn't work for all cards. Although the service is provided by VISA and MC, it is up to the individual bank or other organization that actually issued the card to decide if they will support it. When we started using it, it boosted revenue on subscription billing by maybe 2-3%.
I don't think the updater service is available to everyone. I believe they do some looking over your history to try to ensure that you aren't the kind of business that would be misusing the service. I'm sure Amazon would qualify.
Re: Ask HN: Affordable and reliable hosting for static pages
#26s3 / cloudfront
Re: Ask HN: Affordable and reliable hosting for static pages
#27You can host a Sinatra app on Heroku for free. Here's the complete app: require 'rubygems' require 'sinatra' get '/' do File.read(File.join('public', 'index.html')) end Just put all of the files in /public and you're good to go.
Also, make sure you are using http caching - that way Heroku will use Varnish to cache them.
Re: Ask HN: Affordable and reliable hosting for static pages
#28Github Pages is a great choice for hosting static files IMO. However I'm not sure if you can host gh-pages on a private repository or not.
Re: Ask HN: Affordable and reliable hosting for static pages
#29dropbox?
^ This. Use dropbox. You get 2Gig for free. It is available from the web and you get total control from anywhere. You can even get a $5 domain to point at your dropbox web location.