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
- A small number of domains - most freelancers run a personal site, a client showcase, and maybe a sandbox for proofs of concept. TrueCore's Flameling plan (£10 / mo) covers a single site, while Ember (£20 / mo) supports up to three sites. Both include SSL certificates that are auto-issued and renewed, so Lucy never worries about certificate expiry.
- Email that works - the Flameling plan gives five email boxes, Ember gives twenty. That covers a personal address, a contact point for the portfolio, and a few client-specific accounts. Email is handled through PurelyMail, a dedicated email specialist, so your inboxes are run by a provider focused on deliverability rather than bolted onto the web node.
- Database support for dynamic sites - Ember and higher plans provide a PostgreSQL 16 instance per customer. A simple WordPress install or a small Laravel app runs without the need to set up a remote database service. The database lives inside a flame-bubble container, isolated by cgroups, so resource limits are enforced at the kernel level.
- Backups you can trust - Backups are taken with restic and stored in encrypted Backblaze B2 buckets. Ember's plan backs up every 12 hours, Blaze every 6 hours, and Inferno every 30 minutes. The backup interval appears in the customer portal, so Lucy knows exactly when the last snapshot was made.
- A predictable cost curve - All plans have a capped annual price increase of 2.5 %, with 30 days' notice before any change. Prices are shown up-front, and you can start on a £1, 14-day trial (non-refundable) before committing. No hidden overage charges appear on the bill.
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
- One to three sites, covered by £10-£20 / mo plans.
- Email addresses that match the same price tier, no extra fees.
- PostgreSQL 16 for dynamic work, isolated by flame-bubble.
- Transparent backups, firewall, and DNS managed in-house.
- Clear limits, real-time capacity, and a price increase cap.
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.