Skip to content
Stephen Arthur
Technology

The economics of a five-dollar server in 2026

Managed platforms are excellent and expensive. For a personal site, a small VPS is still absurdly good value — with a few caveats worth knowing up front.

Stephen Arthur1 min read3.3K
Share
The economics of a five-dollar server in 2026
The economics of a five-dollar server in 2026

A modern entry-level virtual server gives you two cores, a few gigabytes of memory and enough bandwidth to serve a well-optimised site to a genuinely large audience. At current prices that is roughly the cost of two coffees a month.

The reason to think carefully anyway is that the sticker price is not the whole cost.

What you are actually buying

A managed platform sells you the absence of a category of problems: patching, certificate renewal, log rotation, the 3am reboot after a kernel update, and the specific misery of discovering your disk filled with journal files.

Most of those are solvable in an afternoon with unattended upgrades, a reverse proxy that handles certificates automatically and a process manager that restarts on failure. But they are your afternoon.

  • Automatic security updates: on, from day one.
  • Certificates: automated renewal, plus a calendar reminder as a backstop.
  • Backups: a nightly copy of the database, stored somewhere that is not the server.

Where a small server stops being enough

Two workloads break it. Sustained image processing at request time, which will pin the CPU and take the site down with it — solve it by processing on upload rather than on read. And write-heavy database traffic, where a single file-backed database eventually becomes the bottleneck.

For a blog, neither applies. Reads dominate by several orders of magnitude, and a well-indexed embedded database will serve them faster than a network round trip to a managed one.

The right question is not whether the server can handle the traffic. It is whether you will remember to renew the certificate.

Last updated June 10, 2026

Share

Written by

Stephen Arthur

Writing about technology, design and the systems that connect them. Ex-engineer, permanent generalist, occasional photographer.

More from Stephen

Related reading

Comments

Leave a comment

Comments are moderated and usually appear within a day.

Never published.