From e82eaab8513470d13a31ed66dc421bf7c9e6bd66 Mon Sep 17 00:00:00 2001 From: Djeex Date: Sun, 13 Jul 2025 16:54:19 +0000 Subject: [PATCH] Fixed doc about using ' instead of " for password using $ caractere in argon hash generation command, preventing working password for admin panel. Please notice Vaultwarden own doc isn't correct. --- content/3.serveex/9.apps/2.vaultwarden.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/3.serveex/9.apps/2.vaultwarden.md b/content/3.serveex/9.apps/2.vaultwarden.md index 0cd7844..432c196 100644 --- a/content/3.serveex/9.apps/2.vaultwarden.md +++ b/content/3.serveex/9.apps/2.vaultwarden.md @@ -76,7 +76,7 @@ services: Next, generate a password hash to put in the `TOKEN` variable in `.env`: ```shell -echo -n "yourpassword" | argon2 "$(openssl rand -base64 32)" -e -id -k 65540 -t 3 -p 4 +echo -n 'yourpassword' | argon2 "$(openssl rand -base64 32)" -e -id -k 65540 -t 3 -p 4 ``` Copy the result securely. @@ -235,7 +235,7 @@ server { Press `Esc`, then type `:x` and press `Enter` to save and exit. -And there you go — Vaultwarden is now exposed! Visit `https://vault.yourdomain.com/admin` to access the admin panel and paste the `ADMIN_TOKEN` you specified in your `compose.yaml`. For more information, see the [Bitwarden documentation](https://bitwarden.com/help/). +And there you go — Vaultwarden is now exposed! Visit `https://vault.yourdomain.com/admin` to access the admin panel and paste the password you specified when generatique the `ADMIN_TOKEN`. For more information, see the [Bitwarden documentation](https://bitwarden.com/help/). Don't forget to install Bitwarden browser extensions (they work with Vaultwarden) for [Chrome](https://chromewebstore.google.com/detail/gestionnaire-de-mots-de-p/nngceckbapebfimnlniiiahkandclblb) and [Firefox](https://addons.mozilla.org/fr/firefox/addon/bitwarden-password-manager/), as well as [iOS](https://apps.apple.com/fr/app/bitwarden/id1137397744) and [Android](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden&hl=fr) apps to sync your passwords.