Navipod is self-hosted software that orchestrates containers and stores credentials for optional external providers. Treat the host and its configuration as privileged infrastructure.
Never commit or publicly share:
Navipod/.env;SECRET_KEY;- Cloudflare tunnel tokens;
- Spotify client secrets;
- Last.fm keys you consider private;
- YouTube
cookies.txt; - database files;
- backup archives containing configuration or user data.
Set a long random value before production use.
openssl rand -hex 48Navipod uses this key for authentication-related signing and encryption of stored provider credentials. Keep a secure copy with your backup/recovery material.
- The Remember me flow stores a signed HttpOnly session cookie, not the user's password.
- Keep
COOKIE_SECURE=truefor HTTPS deployments. - Use
COOKIE_SECURE=falseonly for trusted plain-HTTP LAN/VPN testing.
For any deployment reachable over an untrusted network, use HTTPS:
- Cloudflare Tunnel mode terminates TLS at Cloudflare's edge.
- Direct-domain mode uses Let's Encrypt.
- Internal mode has no TLS and must remain on a trusted LAN or inside a VPN.
The concierge needs Docker control for user-container orchestration. A mounted Docker socket effectively gives the service powerful control over the host's container environment.
Recommendations:
- restrict host shell access;
- restrict Navipod admin access;
- keep the host patched;
- avoid running unrelated untrusted workloads on the same Docker daemon;
- review Compose changes before deploying them.
TRUST_PROXY_HEADERS should only be enabled when requests are actually coming through a trusted proxy, and TRUSTED_PROXY_IPS should be scoped to the proxy addresses/CIDRs you control.
Backups can contain user data and secrets. Encrypt them at rest when stored outside the host and test restores periodically.
See Backup & Restore.
Before publishing a screenshot or log, remove:
- private domain names when necessary;
- usernames you do not want public;
- tokens and secrets;
- cookies;
- private playlists/library data;
- IP addresses that reveal private infrastructure.
Security guidance does not change the project's license. Navipod is licensed for private, personal, non-commercial use only. Read the root LICENSE for binding terms.