Skip to content

How to Set Up Nextcloud: Your Own Personal Cloud Storage Guide

You're paying Google, Dropbox, or Microsoft every month for the privilege of storing your files on their servers — while handing over metadata about everything you store. Nextcloud offers a compelling alternative: your own personal cloud storage, running on hardware you control, accessible from anywhere, at a fraction of the ongoing cost. This guide walks you through setting up Nextcloud in 2026, no prior Linux experience required.

What Is Nextcloud?

Nextcloud is free, open-source cloud storage software — think Google Drive, but running on your own server. Beyond file storage, it includes collaborative document editing (via Collabora or OnlyOffice), calendar, contacts, notes, video calls, and a growing app ecosystem. It can be self-hosted on a Raspberry Pi in your home, a VPS in a data centre, or a spare PC. Once set up, Nextcloud apps for Windows, Mac, iOS, and Android make it seamlessly accessible like any cloud service — but your data never leaves your infrastructure.

Hardware Options for UK Users

Option 1: Home Raspberry Pi Server (Cheapest)

A Raspberry Pi 5 (4GB, around £60 from The Pi Hut) with a USB hard drive (1TB from Curry's for around £40) makes a capable personal cloud for a single user or small family. The setup costs roughly £120 upfront and uses approximately £20–30/year in electricity. Accessible from outside your home network via DDNS (Dynamic DNS) services — DuckDNS is free.

Option 2: VPS in a Data Centre (Best Reliability)

A virtual private server from Hetzner (popular with UK developers) provides guaranteed uptime and fast access from anywhere. The CX22 plan (2 vCPU, 4GB RAM) costs around €4.99/month — approximately £4.30/month. Add a separate storage volume (20GB costs €1/month, 200GB costs €9.60/month) for your files. Total: around £8–15/month depending on storage needs. No electricity, no home hardware failures, accessible 24/7.

Option 3: NAS with Nextcloud App

Synology and QNAP NAS devices (from around £150) natively support Nextcloud via their app stores. This is the most plug-and-play option — ideal if you're not comfortable with Linux command line. Install takes under an hour through the graphical interface.

The cleanest way to install Nextcloud in 2026 is via Docker and Docker Compose. This approach:

  • Keeps Nextcloud isolated from your server's base system
  • Makes updates straightforward (one command)
  • Allows easy backup by copying the Docker volumes

On your Debian/Ubuntu VPS or Raspberry Pi, run:

  1. Install Docker: curl -fsSL https://get.docker.com | bash
  2. Create a docker-compose.yml file using the official Nextcloud compose template from hub.docker.com/_/nextcloud
  3. Edit the file to set your admin password and database credentials
  4. Run docker compose up -d
  5. Access Nextcloud at your server's IP address on port 80

The Nextcloud AIO (All-In-One) Docker image (available at github.com/nextcloud/all-in-one) simplifies this further — it's the recommended approach for beginners in 2026.

Setting Up HTTPS (Essential for Security)

Before accessing Nextcloud from outside your home network, you must enable HTTPS encryption. This is straightforward with Let's Encrypt free certificates:

  • Register a free domain at DuckDNS.org (something like yourname.duckdns.org) and point it to your server's IP
  • The Nextcloud AIO installer handles Let's Encrypt certificate generation automatically
  • Alternatively, use Nginx Proxy Manager (another Docker container) to manage SSL termination

Apps That Make Nextcloud Powerful

Once your instance is running, install these apps from the Nextcloud App Store:

  • Collabora Online / OnlyOffice — Edit Word, Excel, and PowerPoint files directly in the browser
  • Nextcloud Talk — Video calls and chat between users
  • Calendar and Contacts — Sync with your phone's calendar and address book
  • Memories — A Google Photos-like photo gallery with timeline view and face recognition
  • News — RSS reader aggregating your favourite tech blogs

Cost Comparison vs Commercial Cloud Storage

  • Google One 200GB: £2.49/month = £30/year
  • Nextcloud on Hetzner (200GB): approximately £12–15/month after storage
  • Nextcloud at home (Pi + 1TB drive): ~£120 upfront + ~£25/year electricity

Home self-hosting breaks even in year two versus Google One. VPS hosting costs more than commercial plans for storage-only use, but the privacy, control, and additional Nextcloud features (documents, calendar, photos) provide justification.

Ready to own your own data? Follow sheddad.tech for more self-hosting guides, privacy-focused tech tutorials, and step-by-step setup instructions for UK tech enthusiasts.

Written by

Richard Tucker

View all posts →