🔥 Limited Time Offer!  Â·  Get your VPS for £1 for the first month
Claim £1 VPS →
🚀 New: Enterprise hosting solutions — Visit UK Speed →

Press Esc to close · Enter to search

Tutorials

Self-Host Ghost on UK VPS: Fast Newsletter & Blog Platform 2026

Self-Host Ghost on UK VPS: Fast Newsletter & Blog Platform 2026

If you want to own your audience, keep your subscriber data in Britain and stop handing a slice of your income to a third party, learning how to self-host Ghost on a UK VPS is one of the smartest moves a creator or startup can make in 2026. Ghost is a lean, modern publishing platform that combines a fast blog, email newsletters and paid memberships in a single application you fully control. This guide walks through what Ghost is, why running it yourself makes sense, how it compares to WordPress and Substack, and exactly how to install, secure and back it up on an Ubuntu server.

What Is Ghost?

Ghost is an open-source publishing platform built on Node.js and designed specifically for professional writers, publishers and independent media. Rather than trying to be everything at once, it focuses on doing three things extremely well: publishing polished articles, sending email newsletters to your list, and running paid memberships or subscriptions. The editor is clean and distraction-free, pages load quickly out of the box, and the whole system is intentionally lightweight compared with a plugin-heavy content management system.

Because it is open source, you can read the code, host it anywhere and shape it with custom themes. Ghost ships with a native membership system, a built-in newsletter engine and first-class Stripe support, so a single install can replace a blog, an email marketing tool and a paid-subscription platform. That makes it a genuine WordPress alternative for people focused on writing and audience, and a serious Substack alternative for anyone building a paid newsletter.

Why Self-Host Your Publishing Platform

There is an official managed service (Ghost Pro), and it is excellent. But running the software on your own server gives you advantages that a hosted plan cannot. When you self-host Ghost you own the audience list, the content and the infrastructure outright, so nothing about your business depends on another company’s pricing changes or policy decisions.

  • Own your audience and data: your subscriber list is portable and yours, never locked inside someone else’s platform.
  • Keep the revenue: paid memberships run through your own Stripe account, so you keep the income minus Stripe’s fees, with no platform cut on top.
  • UK data residency and GDPR: hosting member and subscriber data on a UK VPS keeps personal data in Britain, which simplifies your GDPR position.
  • Full control: custom themes, custom integrations, your choice of email provider and no imposed feature limits.

The trade-off is honest: you become responsible for updates, email deliverability and backups. For most creators and teams that is a fair exchange for independence, especially on an unmanaged VPS you fully control. If you would rather someone else patch the operating system, a managed plan may suit you better.

What You Need to Self-Host Ghost

  • A UK VPS running a supported Ubuntu LTS release, with at least 1GB RAM (2GB is comfortable for production).
  • A registered domain name pointing to the server’s IP address.
  • Node.js LTS, MySQL 8 and Nginx (Ghost-CLI helps install and configure these).
  • A Mailgun account for bulk newsletter sending and an SMTP service for transactional email.
  • A Stripe account if you plan to sell membership subscriptions.

Ghost vs WordPress vs Substack

Self-host Ghost vs WordPress vs Substack compared on revenue cut, data ownership and newsletters
Self-hosted Ghost takes no platform cut and keeps your audience data on your UK VPS — unlike Substack.

Each platform suits a different person. WordPress is the most flexible and has the largest plugin ecosystem, so it can become almost anything. Substack needs zero setup and is brilliant for getting started, but it takes a share of your subscription revenue and owns the platform your audience lives on. A self-hosted Ghost install sits in between: more control and better economics than Substack, with far less maintenance overhead than a sprawling WordPress build.

FactorGhost (self-hosted)WordPressSubstack
ControlFull (own server)Full (own server)Limited (hosted only)
Revenue cutNone (Stripe fees only)None (plugin dependent)Platform takes a share (~10%)
Data ownershipYou own everythingYou own everythingPlatform holds your list
Setup effortModerate (you run the server)Moderate to highNone
Best forNewsletters, blogs and paid memberships with independenceFlexible sites needing many pluginsFast start, no technical work

How to Install Ghost on UK VPS

A Ghost publishing admin dashboard with members, paid subscribers and revenue on a UK VPS
The Ghost admin: manage posts, members, paid tiers and revenue — all running on your own UK VPS.

Ghost officially supports Ubuntu and installs cleanly with Ghost-CLI, the command-line tool that handles configuration for you. Start on a fresh Ubuntu server, update it, and create a dedicated non-root user with sudo rights. Always follow the official Ghost documentation alongside this summary, as version requirements change over time.

# Update the system and create a user
sudo apt update && sudo apt upgrade -y
sudo adduser ghostuser
sudo usermod -aG sudo ghostuser
su - ghostuser

Next install the stack Ghost depends on: Node.js LTS, MySQL 8 and Nginx. SQLite is fine for local development, but you should use MySQL in production for reliability and performance.

# Nginx
sudo apt install -y nginx

# MySQL 8 (then run mysql_secure_installation)
sudo apt install -y mysql-server
sudo mysql_secure_installation

# Node.js LTS via NodeSource, then Ghost-CLI
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejs
sudo npm install ghost-cli@latest -g

Now create an empty directory for the site, set the right ownership, and run the installer. Ghost-CLI asks a few questions (your domain, the MySQL credentials, whether to set up Nginx and SSL) and does the heavy lifting automatically.

sudo mkdir -p /var/www/ghost
sudo chown ghostuser:ghostuser /var/www/ghost
sudo chmod 775 /var/www/ghost
cd /var/www/ghost

ghost install

During installation Ghost-CLI configures Nginx as a reverse proxy, requests a free Let’s Encrypt SSL certificate and sets up a systemd service so Ghost starts automatically on boot. Because Ghost is a Node.js application, the same operational patterns apply as when you deploy other Node.js apps on a VPS. If you prefer containers, you can also run Ghost with Docker Compose on a UK VPS instead of the CLI approach.

How to Set Up Email and Newsletters

Ghost newsletters via Mailgun and paid memberships via Stripe on a self-hosted UK VPS
Send newsletters with Mailgun and take payments with Stripe — no platform cut, subscriber data stays in the UK.

Email is where Ghost earns its keep, and it uses two separate channels. Bulk newsletter delivery runs through Mailgun, Ghost’s supported bulk email provider. Transactional email, such as member sign-up confirmations and magic login links, is sent over standard SMTP. You need both configured for a fully working membership site.

  • Newsletters (bulk): create a Mailgun account, verify a sending domain, add the required DNS records, then add your Mailgun API key and domain in Ghost’s settings under email newsletters.
  • Transactional (SMTP): set the mail block in config.production.json with your SMTP host, port and credentials so member magic links and receipts always arrive.

For paid membership tiers, connect your Stripe account in the Ghost dashboard. Ghost handles the signup flow, gated content and recurring billing, while the money lands directly in your own Stripe account. This is the core of the Substack alternative appeal: you run paid subscriptions without surrendering a percentage of every payment to a platform.

Configure a Reverse Proxy and HTTPS

In most cases Ghost-CLI has already done this work for you: it installs an Nginx server block that proxies requests to the Ghost process on its internal port, and it provisions a Let’s Encrypt certificate with automatic renewal. You can confirm and manage the SSL setup with the built-in tooling.

# Re-run or repair SSL if needed
ghost setup ssl

# Check the site is serving over HTTPS
curl -I https://your-domain.co.uk

If you already run your own reverse proxy, a CDN, or a load balancer in front of the server, you can customise the Nginx configuration or point your proxy at Ghost directly. Just make sure the url in your config uses https:// and that the proxy forwards the correct host and protocol headers so links and cookies behave.

Secure and Back Up Ghost

A self-hosted platform is only as safe as the server underneath it. Harden the box before you invite an audience onto it, and put a reliable backup routine in place from day one.

  • Keep Ghost current with ghost update, and apply operating system security patches regularly.
  • Use a strong, unique admin password and enable two-factor authentication for staff accounts.
  • Configure a firewall (UFW) to allow only SSH, HTTP and HTTPS, and follow proper SSH hardening on your Linux VPS.
  • Back up the content/ directory (themes, images and settings) together with a MySQL dump of the database.
# Back up the MySQL database
mysqldump -u ghost_user -p ghost_prod > ghost_backup.sql

# Archive the content directory (images, themes, settings)
tar -czf ghost_content.tar.gz /var/www/ghost/content

Store those backups off the server. Copying them to a self-hosted MinIO object store or another remote location means a single server failure never costs you your archive or your subscriber list.

Best Practices for Production Ghost

Once the site is live, a few habits keep it fast, healthy and deliverable. Choose a UK VPS with enough headroom so Node.js and MySQL are never starved of memory during a large newsletter send. UK Speed’s UK VPS plans give you that local footprint with root access, keeping latency low for British readers and member data on home soil.

  • Warm up your sending domain gradually and keep an eye on bounce and spam rates to protect newsletter deliverability.
  • Set up SPF, DKIM and DMARC records so your emails reach the inbox rather than the spam folder.
  • Test upgrades and theme changes on a staging copy before touching production.
  • Automate daily backups and periodically test that a restore actually works.

Conclusion

Choosing to self-host Ghost gives independent writers, startups and agencies a professional publishing stack that they truly own: a fast blog, a real newsletter engine and paid memberships, all on a server they control. You trade a little maintenance for genuine independence, better economics than Substack and the flexibility that a hosted plan cannot match.

If the balance of control, revenue and data residency appeals to you, the path forward is straightforward.

  • Provision a UK VPS with at least 2GB RAM and point your domain at it.
  • Install Ghost with Ghost-CLI, then connect Mailgun and Stripe.
  • Harden the server, enable HTTPS and set up automated backups.
  • Import your existing subscribers and publish your first issue.

Launch your Ghost site on a UK Speed VPS

Run your own newsletter and blog on a fast UK NVMe VPS with full root access – self-host Ghost, own your audience and keep 100% of your subscriptions, with data kept in the UK.

Share this article:
↑
1
Powered by Joinchat