TL;DR Summary
Most privacy tools either don’t work or are so inconvenient you won’t use them. These do both: they actually protect your privacy AND are practical for daily use. This covers my complete privacy stack—private search (SearXNG), encrypted email (Proton + Tuta), DNS filtering (AdGuard Home), private messaging (Signal), and secure browsing (Brave + uBlock). No tinfoil hat required.
Private Search: SearXNG
Google tracks everything. SearXNG is an open-source metasearch engine that aggregates results without tracking you.
Setup:
docker run -d -p 8080:8080 searxng/searxng
My instance: https://search.santander.ovh
Features:
- No search history
- No personalization
- Multiple source aggregation
- Open source, self-hostable
Email: Proton Mail + Tuta
Proton Mail for primary email (Swiss-hosted, E2E encrypted):
- Free tier available
- Native apps for iOS/Android
- Open source encryption
Tuta for secondary/backup:
- Cheaper than Proton
- Also E2E encrypted
- German jurisdiction (strong privacy laws)
Rule: Never use Gmail, Outlook, or Yahoo for anything you want to keep private.
DNS Filtering: AdGuard Home
Instead of using your ISP’s DNS or Google’s DNS (both log everything), run AdGuard Home:
docker run -d --name adguard -p 53:53/tcp -p 53:53/udp -p 3000:3000/tcp -v /home/adguard/work:/opt/adguardhome/work -v /home/adguard/conf:/opt/adguardhome/conf adguard/adguardhome
Benefits:
- Block ads at DNS level (no browser extensions needed)
- Log what devices are querying
- Block tracking domains globally
- Custom blocklists
Browser: Brave + uBlock Origin
Brave comes with:
- Built-in ad blocker
- Tor windows
- Fingerprint protection
- Shields that actually work
uBlock Origin (additionally):
- More granular control
- Community blocklists
- Low memory footprint
Disable:
- Chrome sync (use Bitwarden instead)
- Location services
- Unnecessary permissions
Password Manager: Bitwarden
Cloud-hosted password manager with:
- Self-host option
- E2E encryption
- Free tier excellent
- Breach monitoring
Stop using browser-saved passwords. Use Bitwarden.
VPN: When and Why
VPNs protect you on:
- Public WiFi
- When ISP monitoring matters
- Accessing region-locked content
My picks:
- Mullvad (no logs, anonymous payment)
- Proton VPN (bundle with email)
Stop using:
- Free VPNs (they sell data)
- VPNs from privacy-hostile jurisdictions
Private Messaging: Signal
End-to-end encrypted by default:
- No metadata storage
- Open source
- Disappearing messages
- Works like normal SMS/MMS
Alternatives: Session, Element (Matrix)
File Storage: Nextcloud + Cryptomator
Nextcloud for file sync:
- Self-hosted
- End-to-end encryption with Cryptomator
- Collabora/OnlyOffice integration
Cryptomator for client-side encryption:
- Works with any cloud storage
- Encryption before upload
- Open source
What Doesn’t Work (Privacy Theater)
These tools give the illusion of privacy without real protection:
- ✗ Incognito mode (your ISP, employer, and sites still see you)
- ✗ Privacy-focused browsers that are just Chromium repaints
- ✗ Free VPN services (you’re the product)
- ✗ Tor Browser for everything (slow, some sites block it)
- ✗ Burner phones (expensive, still identifiable patterns)
My Daily Stack
| Tool | Purpose | Cost |
|---|---|---|
| Brave + uBlock | Browsing | Free |
| Bitwarden | Passwords | Free |
| Proton Mail | Primary email | Free/$ |
| AdGuard Home | DNS filtering | Free |
| SearXNG | Search | Free |
| Signal | Messaging | Free |
| Mullvad VPN | When needed | /mo |
FAQ
Q: Does private browsing actually make me private?
A: Private/incognito mode only prevents local browser history storage. Your ISP, network admin, and websites still see your real IP. It does not make you anonymous — it just means someone using your computer after you will not see your history.
Q: Is SearXNG actually private?
A: SearXNG itself does not track or log searches. It aggregates results from major search engines without storing queries. However, your IP is visible to the search engines it queries, and your network operator can still see that you are using SearXNG. For stronger privacy, use a VPN alongside SearXNG.
Q: Is Proton Mail really encrypted?
A: Proton Mail encrypts messages between Proton users by default. Emails sent to non-Proton addresses are encrypted with a password you set, but the email header (to/from/subject) is not encrypted. For full end-to-end encryption, use PGP with your own keys regardless of email provider.
Q: What privacy tool makes the biggest difference?
A: DNS-level filtering (AdGuard or Pi-hole). It blocks trackers and telemetry before they even connect, works across every device, and requires zero per-app configuration. It is the foundation of a practical privacy setup.
Q: Does Brave browser actually block more than others?
A: Brave blocks ads, trackers, and fingerprinting by default — more than Chrome or Firefox without extensions. It also has a built-in Tor window for occasional private browsing. For power users who want control without extension management, it is a solid choice.