IP Masking: Hide Your Server IP
Protect your home IP address when self-hosting Orbitr.
When you self-host Orbitr, your public IP address is visible in DNS records. This guide covers options to hide it.
🤔 Why would I want to hide my IP?
Your public IP reveals your approximate location and can be used for targeted attacks (DDoS). Streamers, public figures, and privacy-conscious users may want to mask it. For private servers shared only with trusted friends, IP exposure is usually fine.
Option 1: Cloudflare Tunnel (Free)
A popular, free option. A Cloudflare Tunnel routes all traffic through Cloudflare’s network, so your real IP never appears in DNS. You run cloudflared yourself and point a named tunnel at your domain.
- No ports need to be opened on your router
- Works behind firewalls and CGNAT
- Free forever
See the full Public Access guide for Cloudflare Tunnel setup instructions.
Option 2: Pulsar Proxied Mode (Coming Soon)
ℹ️ Not available yet
A future Pulsar option will let registered servers route their web and chat traffic through Pulsar, so your origin IP never appears in DNS — with no extra software to run. It isn’t built yet. For now, use a Cloudflare Tunnel (Option 1) or a VPS reverse proxy (Option 3).
Keep in mind that a proxy only hides your server’s IP for the web interface and chat. Voice and video still flow through your TURN relay, which connects directly rather than through the proxy — so people in a call may still see your server’s IP while the call is active. For masking across both chat and voice, Pulsar’s managed front-end is coming soon.
Option 3: VPS Reverse Proxy
Run a cheap VPS ($3-5/month) as a reverse proxy. Your home server connects to the VPS via a WireGuard or SSH tunnel, and the VPS forwards traffic. Your home IP never appears in DNS.
Set up a VPS
Rent a small VPS from any provider. A $3-5/month instance is sufficient for proxying traffic.
Create a tunnel
Set up a WireGuard or SSH tunnel between your home server and the VPS. Your Orbitr server connects out to the VPS, so no ports need to be opened at home.
Configure the proxy
On the VPS, run nginx or Caddy as a reverse proxy. Point your domain at the VPS IP. The proxy forwards requests through the tunnel to your home server.
⚙ Example nginx config
server {
listen 443 ssl;
server_name chat.yourdomain.com;
ssl_certificate /etc/letsencrypt/live/chat.yourdomain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/chat.yourdomain.com/privkey.pem;
location / {
proxy_pass https://10.0.0.2; # WireGuard peer IP (port 443 is default)
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
} Option 4: Accept It
For private servers shared only with trusted friends, IP exposure may be perfectly acceptable. Your IP reveals your approximate location (city-level) but not your exact address.
ℹ️ Info
If your server is invite-only and you trust everyone who has access, IP masking is a nice-to-have, not a necessity. Focus on keeping your server software updated and your firewall configured properly.
Comparison
| Option | Cost | Complexity | IP hidden |
|---|---|---|---|
| Cloudflare Tunnel | Free | Easy | Yes |
| Pulsar Proxied (coming soon) | — | None | Yes |
| VPS Reverse Proxy | $3-5/mo | Moderate | Yes |
| Accept it | Free | None | No |
What's next?
Custom Domain SetupOrbitr PulsarOptional
Optional cloud identity backup and sync, so your identity follows you across devices.