notDMCA
Menu
Guide

How to host a Jitsi Meet video-conference server anonymously (2026)

Self-hosted Jitsi Meet on a no-KYC offshore VPS for private group video calls. Bandwidth requirements, JVB sizing, recording configuration, and which DMCA-ignored providers handle the workload.

Updated

TL;DR

For a personal / community Jitsi Meet server in 2026:

Why self-host Jitsi

Jitsi is the leading open-source video conferencing platform. Self-hosting gives you:

Sizing

Jitsi’s bandwidth and CPU requirements scale with call participants × video resolution. Approximate guidelines for the JVB (Jitsi Video Bridge) tier:

Use caseSpecsBandwidth (peak)
1-on-1 calls (P2P)1 vCPU, 2 GB RAMNegligible
Small meetings (3-8 people)2 vCPU, 4 GB RAM50-100 Mbps
Medium (10-25 people)4 vCPU, 8 GB RAM200-400 Mbps
Large (50+ people)8+ vCPU, 16+ GB RAM500+ Mbps

Bandwidth is the binding constraint at scale. Pick a host with unmetered ports rather than metered transfer if you expect more than occasional use.

Step-by-step

1. Provision

Pick a host with high bandwidth allowance:

2. Install Jitsi (Debian / Ubuntu)

# Install dependencies
sudo apt install -y curl gnupg2 nginx-full

# Add Jitsi repository
curl https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add -
echo 'deb https://download.jitsi.org stable/' | sudo tee /etc/apt/sources.list.d/jitsi-stable.list
sudo apt update

# Install Jitsi Meet
sudo apt install -y jitsi-meet

The installer prompts for:

3. Lock down to authenticated users

By default, anyone who knows your domain can create and join rooms. To restrict:

# Configure Prosody for authenticated room creation
sudo nano /etc/prosody/conf.avail/meet.yourdomain.com.cfg.lua

Change authentication = "anonymous" to authentication = "internal_hashed", and add:

VirtualHost "guest.meet.yourdomain.com"
    authentication = "anonymous"
    c2s_require_encryption = false

Then in /etc/jitsi/meet/meet.yourdomain.com-config.js:

var config = {
    // ...
    hosts: {
        domain: 'meet.yourdomain.com',
        anonymousdomain: 'guest.meet.yourdomain.com',
        // ...
    },
    // ...
};

Create users with sudo prosodyctl register USERNAME meet.yourdomain.com PASSWORD.

4. Restart services

sudo systemctl restart prosody jicofo jitsi-videobridge2

5. End-to-end encryption (optional)

Jitsi supports E2EE for calls of ≤20 participants. Enabled per-call via the UI; doesn’t require server config beyond the standard install.

Anonymity considerations

Cost

ComponentApproximate cost
HostHatch IS / FI 4 GB RAM~$8 / month
Domain (Njalla .com)~$1.25 / month
Total~$10 / month

For comparison: Zoom Pro is $15/user/month; Google Meet is bundled with Workspace ($6+/user/month). A self-hosted Jitsi serves your entire team / family / community at flat cost.

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 →

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 →

AbeloHost

Netherlands · Shared hosting · VPS · Dedicated server
7.9/10
from $10/mo

Dutch host explicitly marketing DMCA-ignored hosting since 2014. Single-jurisdiction Netherlands operation with shared, VPS and dedicated tiers; accepts crypto and Perfect Money, supports anonymous signup.

Ignores DMCA 🔒 No KYC Anon signup WHOIS privacy
Payments
Bitcoin Litecoin Ethereum Other crypto PayPal Credit card Bank wire Perfect Money
Verified Read full review →

Related guides