Blog
Hosting

Hosting for UK Freelancers Who Don't Want to Manage Servers

A practical look at what UK freelancers need from a host, and why TrueCore's managed plans hit the sweet spot without surprise limits.

Lucy just landed a new client who wants a quick demo of a portfolio site. She has a laptop, a design tool, and a deadline. The last thing she wants is to learn sysadmin commands, monitor disk usage, or chase-up a broken email inbox. She needs a host that lets her create one or three sites, gives her a handful of email accounts, and sends a warning before anything goes wrong.

The basics a freelancer actually needs

How TrueCore's managed approach stays out of the way

TrueCore runs a three-node fleet: ember in Nuremberg, Germany, spark in Sofia, and litespeed in Dallas. All customer sites live on ember; "hosted in the UK" refers to jurisdiction — TrueCore is a UK-registered company operating under UK law and GDPR — not to where the metal sits. All nodes use Alpine Linux with the current linux-virt kernel. The web server on each node is nginx 1.28, and each domain receives its own pod-nginx process. This design isolates traffic without the overhead of a full container orchestrator.

The flame-guardian nftables firewall, plus the XDP-based guardian-x module, blocks common attacks at the kernel level. There is no need for Lucy to configure iptables or purchase an additional WAF. The monitoring daemon flame-watchman checks health every five minutes and posts alerts to Discord via flame-sentinel.

Because resources are enforced by cgroups, the plan limits you see in the panel are the limits the kernel applies. If a PHP request exceeds the memory limit, PHP kills that request and returns a 500 error. It does not steal memory from another customer. This is the same behaviour described in our post Understanding Your Hosting Plan where we explained units and slots.

TrueCore does not bundle cPanel or any other control panel that locks you into a proprietary UI. The customer portal is a lightweight web app that shows exact limits, backup timestamps, and lets you spin up a new site in a few clicks. If Lucy prefers the command line, she can SSH straight into the ember node:

ssh user@ember.truecorehosting.com
# create a new demo directory
mkdir -p /var/www/demo.example.com
# set up a basic nginx config
cat > /etc/nginx/sites-available/demo.example.com <<EOF
server {
    listen 80;
    server_name demo.example.com;
    root /var/www/demo.example.com;
}
EOF
ln -s /etc/nginx/sites-available/demo.example.com /etc/nginx/sites-enabled/
rc-service nginx reload

The flame-bubble isolation guarantees that the demo site cannot affect Lucy's main portfolio, even if she runs experimental code.

Why "managed-but-not-restrictive" matters for freelancers

Freelancers need certainty. A surprise throttling clause or an opaque overage fee can turn a happy client into a late invoice. TrueCore's no-overselling policy means each physical server holds 100 units, and the sum of sold units never exceeds that number. When a server reaches capacity, the sign-up page simply stops accepting new customers. There is no hidden queue that could affect existing sites.

The backup schedule is visible in the UI, and the system sends email alerts at 80 % and 90 % storage use. If a site approaches its disk quota, Lucy gets a clear warning and a simple upgrade button. There is no "fair use" clause buried in fine print. Everything that can be measured is measured, and the numbers match the technical configuration.

Because the DNS service is run in-house with flame-dnsd, zone changes propagate across the three-node fleet in under five seconds via inotify and WireGuard rsync. Lucy can add a subdomain for a client demo and see it resolve almost instantly, without waiting for an external provider's propagation window.

The trade-off is that TrueCore does not offer 24 / 7 phone support. Support is provided by email and portal tickets during business hours, with out-of-hours escalation for genuine incidents. For a freelancer who works regular office hours, this arrangement keeps costs low while still delivering timely help.

Bottom line for the UK freelancer

If Lucy needs a quick demo site, a stable portfolio, and a reliable inbox, she can spin up a new domain in minutes, know exactly how much storage she has left, and trust that the underlying server will not be over-committed. TrueCore's managed-but-not-restrictive approach gives freelancers the tools they need without the hidden surprises that often come with cheap shared hosts.

Ready for hosting that doesn't oversell?

Get started from £10/mo More articles
Stay in the loop New posts, platform updates, and open chat — join the community.
Join Discord