MirrorNest
← Todas las guías

Vaultwarden

Lightweight, self-hosted password manager server, compatible with official Bitwarden apps and browser extensions.

Sistema: Any Docker hostSecurityPassword ManagerSitio oficial ↗Documentación oficial ↗
Esta guía se elaboró a partir de la documentación oficial de Vaultwarden, enlazada arriba — verifica siempre ahí los nombres exactos de paquetes/versiones antes de ejecutar estos comandos en un servidor de producción, ya que las versiones de la distribución y del proyecto cambian con el tiempo.
  1. 1Run the container

    docker run -d --name vaultwarden -e WEBSOCKET_ENABLED=true -v /vw-data/:/data/ -p 8080:80 vaultwarden/server:latest
  2. 2Put it behind HTTPS

    The official Bitwarden apps refuse to connect to a server without valid HTTPS — put Vaultwarden behind a reverse proxy (nginx, Caddy, or Nginx Proxy Manager) with a real certificate before connecting any client.

  3. 3Disable public signups once your accounts exist

    Set SIGNUPS_ALLOWED=false as an extra -e flag once you and anyone else you want have created accounts — otherwise anyone who finds the server can register.