notDMCA
Menu
Guide

How to host SearXNG (private metasearch engine) anonymously (2026)

Self-hosted SearXNG metasearch — Google / Bing / DuckDuckGo aggregator with no tracking. Tiny resource footprint; ideal first project for a no-KYC offshore VPS.

Updated

TL;DR

SearXNG is a privacy-respecting metasearch engine — your queries hit it instead of Google/Bing/DDG, and it federates the searches without tracking you. Sizing: minimal (~200 MB RAM). Best for: a first self-hosted project on the cheapest available VPS.

Private search alternatives (DuckDuckGo, Brave Search, Kagi, Startpage) are all third-party services. They’re better than Google but they still see your queries. Self-hosting SearXNG means:

Step-by-step

1. Provision

Cheapest available VPS works. AlexHost Moldova ($4/mo), HostHatch Iceland ($2/mo annual), or BuyVM Slice 1024 ($2/mo) all suffice.

2. Install via Docker Compose

services:
  searxng:
    image: searxng/searxng:latest
    restart: always
    ports:
      - 127.0.0.1:8080:8080
    volumes:
      - ./searxng:/etc/searxng
    environment:
      - SEARXNG_BASE_URL=https://search.yourdomain.com/

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

Caddyfile:

search.yourdomain.com {
    reverse_proxy localhost:8080
}

3. Configure

Edit searxng/settings.yml:

server:
  secret_key: "GENERATE-A-RANDOM-STRING"
  bind_address: "0.0.0.0"
  port: 8080

search:
  safe_search: 0
  autocomplete: ""

ui:
  static_use_hash: true

Restart: docker compose restart.

Hardening

Cost

ComponentCost
BuyVM Slice 1024$2 / month
Domain (Njalla .com)$1.25 / month
Total~$3 / month

For comparison, Kagi (commercial private search) is $10/month for 300 searches. Self-hosted SearXNG is unlimited.

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 →

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