notDMCA
Menu
Guide

How to host FreshRSS (self-hosted RSS reader) anonymously (2026)

Self-hosted FreshRSS — the leading PHP-based RSS aggregator — on a cheap offshore VPS. Replaces Feedly / Inoreader / Google Reader. Tiny resource footprint, robust mobile clients, and full data ownership.

Updated

TL;DR

FreshRSS is the leading self-hosted RSS reader. Replaces Feedly, Inoreader, NewsBlur, Google Reader. Tiny footprint:

Why self-host RSS

RSS reading is back. Feedly tracks you. Inoreader is paid + cloud. Google Reader is dead. Self-hosted FreshRSS:

Step-by-step

1. Provision

Smallest available VPS. HostHatch IS at $2/mo (annual prepay) is the cheapest path with non-US jurisdiction.

2. Install via Docker Compose

services:
  freshrss:
    image: freshrss/freshrss:latest
    restart: always
    environment:
      TZ: Europe/Reykjavik
      CRON_MIN: "*/15"
      LISTEN: "0.0.0.0:80"
    volumes:
      - ./freshrss-data:/var/www/FreshRSS/data
      - ./freshrss-extensions:/var/www/FreshRSS/extensions
    ports:
      - 127.0.0.1:8080:80

  caddy:
    image: caddy:latest
    restart: always
    ports:
      - 80:80
      - 443:443
    volumes:
      - ./Caddyfile:/etc/caddy/Caddyfile
      - ./caddy_data:/data

Caddyfile:

rss.yourdomain.com {
    reverse_proxy localhost:8080
}

Start:

docker compose up -d

3. First-time setup

4. Import existing feeds

If migrating from Feedly / Inoreader / Reeder, export OPML and import in FreshRSS: Subscriptions → Import → upload OPML.

5. Enable API for mobile sync

Settings → Authentication → API Password → set a password. Now you can sign into mobile clients (FluentReader, Reeder 5, Read You, Newsboat) using:

6. Mobile client picks (2026)

Hardening

Cost

ComponentCost
HostHatch IS entry$2 / month
Domain (Njalla .com)$1.25 / month
Total~$3 / month

For comparison: Feedly Pro+ is $12/month, Inoreader Pro is $10/month. Self-hosted FreshRSS is one-tenth the cost with full data ownership.

Recommended providers

HostHatch

Hong Kong (HQ); operates in 17+ global locations · VPS · Dedicated server · Object storage
7.5/10
from $2.00/mo

Long-running global KVM VPS provider (since 2011) with 15+ datacenter locations including Iceland, Romania, Finland, the Netherlands and Sweden. Strong value, broad crypto support, content-permissive in non-US locations.

Partial compliance 🔒 No KYC Anon signup
Payments
Bitcoin Lightning Litecoin Other crypto PayPal Credit card
⚠ Not advertised as DMCA-ignored. Pick non-US datacenters (IS, NL, RO, FI, SE) for higher takedown resistance.
Verified Read full review →

BuyVM (Frantech)

Canada (parent: Frantech Solutions); operates in US, Luxembourg, Miami, Las Vegas · VPS · Dedicated server · Object storage
7.4/10
from $2.00/mo

Long-running KVM VPS provider with a strong reputation in the privacy / opsec community for being content-permissive and crypto-friendly. Excellent value at the entry tier, but US locations remain DMCA-bound.

Partial compliance 🔒 No KYC Anon signup
Payments
Bitcoin Lightning Litecoin Ethereum Other crypto PayPal Credit card
⚠ US infrastructure is subject to DMCA — pick the Luxembourg location for higher takedown resistance.
Verified Read full review →

AlexHost

Moldova · Shared hosting · VPS · Dedicated server
8.0/10
from $4.00/mo

Moldova-based offshore host (since 2008) with notably aggressive pricing and explicit DMCA-ignored marketing. Non-EU jurisdiction; useful when EU venues are too close to the regulatory pressure you're trying to escape.

Ignores DMCA 🔒 No KYC Anon signup WHOIS privacy
Payments
Bitcoin Litecoin Ethereum Other crypto PayPal Credit card Bank wire Perfect Money
⚠ Moldova is geopolitically adjacent to active conflict zones — assess infrastructure-stability risk for long-running production workloads.
Verified Read full review →

Related guides