Hacker News new | ask | show | jobs
Ask HN: What are the largest static sites you know of?
2 points by ta_1 1478 days ago
Largest in terms of number of pages. The only result in google search seems to be of a now defunct website. Also interested in knowing about the challenges faced in hosting the same. Recently tried hosting a ~ 25 million page site. Broke all the static site hosting providers out there.
2 comments

Apparently all of amazon.com is static pages https://twitter.com/amilajack/status/1484970825568505856
Can you speak more about how the hosting providers were broken?
One example I can give you is the the Gitlab pages artifact size limit (1 GB). Most providers also have a "max build time" that is too low for projects of this size.
You could host on AWS or GCP which doesn't have any limits.
I have hosted it using an s3 compatible object store for now. But the experience was really terrible compared to Gitlab Pages / Netlify (Just push it to a repo and you are done!).
there's standardized tooling you can use to do this from git, or you can just use `hugo deploy` from your workstation.

At the "largest" level, you should accept 1-2 hours of minor setup/fiddling at least.