Blog · Hosting

The Energy Cost of Hosting, and What Green Claims Mean

Every WordPress site is, ultimately, a small draw on a power grid somewhere. Servers run around the clock, cooling systems keep them from overheating, and networking gear moves data in and out. Hosting marketing has gotten good at slapping a leaf icon on a pricing page, but “green hosting” can mean anything from a facility with a genuine renewable power purchase agreement to a data center that bought some certificates and called it a day. Understanding the difference, and knowing which efficiency levers you actually control at the site level, matters more than the badge.

Where the power actually goes

A data center’s electricity bill has two broad buckets. The first is IT load: the actual servers, storage, and network switches doing the work of running websites. The second is overhead: cooling systems, power conversion and distribution equipment, lighting, and building operations. Cooling in particular can be a large share of the total, since dense racks of servers generate heat that has to go somewhere.

A well-designed facility keeps overhead low relative to IT load. A poorly designed one spends nearly as much energy keeping itself running as it does actually serving your site. That ratio is where PUE comes in.

PUE: what the number can and can’t tell you

Power Usage Effectiveness (PUE) is the ratio of total facility energy consumption to the energy consumed by IT equipment alone. A PUE close to 1.0 means very little energy is lost to overhead like cooling and conversion; a higher number means more energy is spent keeping the lights on around the servers rather than running them.

PUE is a useful efficiency signal, but it has limits worth knowing:

  • It’s a facility-level metric, not a measure of how clean the electricity source is. A data center can have an excellent PUE and still run entirely on a fossil-heavy grid.
  • It says nothing about how efficiently your specific site or application runs. A bloated WordPress install on a well-run data center still burns more CPU cycles per pageview than a lean one.
  • Methodology varies. Some providers report an annual average, others a best-case snapshot. Numbers aren’t always apples to apples across companies.

Treat PUE as one data point about facility design, not as a full answer to “is this green hosting.”

Renewable claims, offsets, and what “green” actually means

When a host says it runs on renewable energy, that claim can rest on a few different mechanisms, and they are not equivalent:

  • Direct renewable power: the facility is physically supplied by on-site generation or a power purchase agreement tied to specific renewable generation matched to its consumption.
  • Renewable Energy Certificates (RECs): the host buys certificates representing renewable generation that happened somewhere on the broader grid, not necessarily anywhere near or matched in time to the data center’s actual usage. This is a legitimate accounting mechanism, but it’s a weaker claim than direct sourcing.
  • Carbon offsets: the host funds an external project, like reforestation or methane capture, to compensate for emissions elsewhere. This addresses a different problem entirely from what powers the servers.

None of these are inherently dishonest, but “100% renewable” printed on a landing page could mean any of the three. If it matters to you, the useful question isn’t “are you green,” it’s “what specifically backs that claim, and is it tied to the facility that actually hosts my site or something more general.”

The efficiency levers you actually control

Here’s the part that’s easy to overlook: regardless of what powers a data center, less repeated computational work per visitor is genuinely fewer watts consumed. This is the lever a site owner can pull directly, and it stacks with whatever the hosting provider does upstream.

  • Full-page caching. A tool like LiteSpeed Cache serves a static, pre-built version of a page instead of re-running PHP and database queries for every single visitor. That’s a real reduction in CPU cycles per pageview, at scale.
  • Persistent object caching. Redis or Memcached, wired in via a drop-in, keep frequently requested data in memory instead of hitting the database repeatedly. Fewer database round trips means less compute work overall.
  • Current PHP versions. PHP 8.3 with OPcache runs the same code more efficiently than older PHP branches. Upgrading isn’t just about speed for visitors, it’s fewer CPU cycles burned per request on the server.
  • Edge caching via a CDN. Cloudflare and similar networks serve cached content from edge locations close to the visitor, so requests never reach the origin server at all. Fewer trips to origin means the origin server does measurably less work.
  • Leaner front-end assets. Optimized images, deferred non-critical scripts, and reduced third-party bloat cut down on data transferred and processing done, both server-side and on the visitor’s own device, which draws its own power to render the page. This is the same work that improves Core Web Vitals: keeping LCP at 2.5 seconds or under and INP at 200 milliseconds or under generally means less code doing less redundant work.

A managed host that keeps this stack, LiteSpeed, Redis, current PHP, and CDN integration, configured correctly out of the box removes a lot of this burden from your plate (this is one area where ServerBorn’s default configuration does the heavy lifting). But the underlying physics doesn’t change depending on who runs the servers: a page that avoids unnecessary database queries and unnecessary script execution uses less energy than one that doesn’t, on any host, on any grid.

Questions worth asking a host

If sustainability genuinely factors into your hosting decision, a short list of direct questions gets you further than a badge:

  • What is your reported PUE, and how and when is it measured?
  • Is your renewable energy claim backed by a direct purchase agreement, RECs, or offsets, and does it apply to the specific facility hosting my site?
  • What region and grid does the data center draw from?
  • Does the platform support a modern caching stack (LiteSpeed or similar) and current PHP versions by default, rather than leaving efficient configuration up to the customer?

The last question matters more than it might seem. A host running efficient software on mediocre power is often a better environmental bet, in practical terms, than one running bloated, uncached sites on a facility with excellent PUE numbers.

The takeaway

Data center energy use is real and worth thinking about, but green hosting claims deserve the same scrutiny you’d give any marketing claim: ask what mechanism backs the number. PUE tells you about facility overhead, not power source. Renewable claims can mean direct sourcing, certificates, or offsets, and those are not interchangeable. Meanwhile, the most direct lever in your own hands is reducing redundant compute on your site itself, through caching, current PHP, and a CDN, work that pays off in speed, cost, and yes, genuinely lower energy demand, no matter which grid your host happens to run on.