notDMCA
Menu
Guide

How to host Vaultwarden (Bitwarden) on an offshore VPS (2026)

Self-hosted Vaultwarden — the lightweight Rust-based Bitwarden-compatible password manager — on an anonymous offshore VPS. Tiny resource requirements, full Bitwarden client compatibility, security hardening.

Updated

TL;DR

Self-hosted Vaultwarden in 2026:

Why self-host Vaultwarden

Bitwarden’s official hosted service is fine for most users, but self-hosting gives you:

Step-by-step

1. Provision

The smallest available VPS is more than enough. HostHatch IS entry at $2/mo (annual prepay) is the recommended pick. BuyVM Luxembourg Slice at $2/mo also works.

Follow /guides/anonymous-vps-monero.

2. Install via Docker Compose

# docker-compose.yml
services:
  vaultwarden:
    image: vaultwarden/server:latest
    restart: always
    environment:
      DOMAIN: "https://vault.yourdomain.com"
      SIGNUPS_ALLOWED: "false"  # set to true initially, then false after creating your account
      ADMIN_TOKEN: "long-random-string-here"
    volumes:
      - ./vw-data:/data
    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

Create Caddyfile:

vault.yourdomain.com {
    reverse_proxy localhost:8080
}

Start:

docker compose up -d

3. First-time setup

4. Connect clients

All Bitwarden clients work with Vaultwarden — just point the server URL to your domain:

5. Hardening

Tor-only deployment

For maximum privacy, run Vaultwarden as an onion-only service:

  1. Don’t expose ports 80/443 to clearnet.
  2. Configure Tor with HiddenServicePort 80 127.0.0.1:8080.
  3. Use the .onion URL in your Bitwarden client (works with Tor Browser; mobile clients need Orbot).

Trade-off: slower initial sync; no fast push notifications.

Cost

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

Compare to Bitwarden Premium ($10/year for individual) or Bitwarden Families ($40/year for 6 users). Self-hosting wins on long-term cost for families and on data sovereignty for everyone.

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 →

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 →

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 →

Related guides