notDMCA
Menu
Guide

How to host a Matrix / Synapse server anonymously (2026)

Self-hosted Matrix homeserver (Synapse, Dendrite, or Conduit) on a no-KYC offshore VPS. Federation considerations, end-to-end encryption setup, voice / video bridge, and provider recommendations.

Updated

TL;DR

For a personal or small-community Matrix homeserver in 2026:

Why self-host Matrix

Matrix is the open federated chat / VoIP / video protocol. Self-hosting your own homeserver (rather than using matrix.org or Element’s hosted offering) gives you:

Implementation choice

SoftwareLanguageMemoryMaturityBest for
SynapsePython1-4 GBMatureCommunities, full features
DendriteGo200-500MBStableBetter performance than Synapse
ConduitRust50-200MBStablePersonal / small teams; lightest resource use
conduwuitRust50-200MBActive forkPersonal, more recent active development

For most personal use cases, Conduit / conduwuit is the right answer — much lower resource footprint than Synapse.

Step-by-step (Conduit)

1. Provision

Sign up anonymously at:

Follow /guides/anonymous-vps-monero.

2. Install Conduit

# Add the systemd service file (Conduit ships with one)
wget https://gitlab.com/famedly/conduit/-/raw/master/debian/conduit.service
sudo mv conduit.service /etc/systemd/system/

# Download the binary
sudo wget https://gitlab.com/famedly/conduit/-/jobs/artifacts/master/raw/conduit-x86_64-unknown-linux-musl?job=build:release \
  -O /usr/local/bin/conduit
sudo chmod +x /usr/local/bin/conduit

# Create the conduit user and config
sudo useradd -m -s /bin/false conduit
sudo mkdir -p /etc/matrix-conduit /var/lib/matrix-conduit
sudo chown conduit /var/lib/matrix-conduit

Create /etc/matrix-conduit/conduit.toml:

[global]
server_name = "yourdomain.com"
database_path = "/var/lib/matrix-conduit/"
port = 6167
max_request_size = 20_000_000
allow_registration = true
allow_federation = true
trusted_servers = ["matrix.org"]

Start Conduit:

sudo systemctl daemon-reload
sudo systemctl enable --now conduit

3. Reverse proxy (Caddy)

matrix.yourdomain.com {
    reverse_proxy /_matrix/* 127.0.0.1:6167
    reverse_proxy /.well-known/matrix/* 127.0.0.1:6167
}

yourdomain.com {
    handle /.well-known/matrix/server {
        respond `{"m.server": "matrix.yourdomain.com:443"}` 200
        header Content-Type application/json
    }
    handle /.well-known/matrix/client {
        respond `{"m.homeserver": {"base_url": "https://matrix.yourdomain.com"}}` 200
        header Content-Type application/json
    }
}

4. Connect a client

Set the homeserver URL to https://matrix.yourdomain.com. Register an account.

5. Federation reality check

Federation is the killer feature of Matrix — but it comes with social complications:

Mitigation: have a moderation policy, publish a code of conduct, don’t allow obvious abuse from your server.

Voice / video calls

Matrix supports voice / video via Element Call (uses LiveKit) or via the older Jitsi bridge. For small groups (≤8 people), Element Call works well on a 4 GB RAM VPS. For larger groups, see Jitsi self-hosting.

Cost (May 2026)

For a personal Conduit homeserver:

ComponentCost
HostHatch Iceland VPS~€3 / month
Domain (Njalla .com)~€1.25 / month
Total~€5 / month

For a community Synapse server (50-200 users):

ComponentCost
FlokiNET mid-tier VPS~€20-30 / month
Object storage (media)~€5 / month
Domain~€1.25 / month
Total~€25-35 / month

Recommended providers

FlokiNET

Iceland (HQ); also operates in Romania, Finland, the Netherlands · VPS · Shared hosting · Dedicated server · Domain registrar
8.5/10
from $6.00/mo

Iceland-headquartered host explicitly built for free-speech and anti-censorship use cases, with infrastructure in IS, RO, FI and NL. Accepts Monero and cash by mail; ignores US DMCA.

Ignores DMCA 🔒 No KYC Anon signup WHOIS privacy
Payments
Monero Bitcoin Lightning Litecoin Cash by mail Bank wire Credit card
Verified Read full review →

1984 Hosting

Iceland · Domain registrar · VPS · Shared hosting · Email hosting
8.3/10
from $6.00/mo

Veteran Icelandic hosting cooperative — domains, shared, VPS, mail. Strong free-speech posture, ICANN-accredited registrar, 100 % Icelandic renewable-power infrastructure.

Resists / pushes back 🔒 No KYC Anon signup WHOIS privacy
Payments
Bitcoin Monero Bank wire Credit card
Verified Read full review →

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 →

Privex

Belize (incorporated); operates in Sweden, Finland, the United States and the Czech Republic · VPS · Dedicated server
8.0/10
from $8.00/mo

Crypto-native VPS and dedicated server provider (since 2017) with no-KYC signup and crypto-only payment. Multi-jurisdiction (SE / FI / US / CZ) infrastructure, accepts Monero, Bitcoin, Lightning and several other chains.

Resists / pushes back 🔒 No KYC Anon signup
Payments
Monero Bitcoin Lightning Litecoin Ethereum Other crypto
⚠ US location is DMCA-bound. Pick Sweden / Finland / Czech Republic if takedown resistance is a priority.
Verified Read full review →

Related guides