Changed example command for token creation to use length 32 instead of 48 because 48 is too long for Vaultwarden

AndreasKirchmair
2026-03-20 13:47:06 +01:00
parent 763c94ff8f
commit fcd25026bd

@@ -7,7 +7,7 @@ The Vaultwarden Admin panel allows a server administrator to configure Vaultward
## How to enable the Admin page
To enable the admin page you need to configure an authentication token. This token can be anything but it's recommended to use a long, randomly generated string of characters. For example by running `openssl rand -base64 48`.
To enable the admin page you need to configure an authentication token. This token can be anything but it's recommended to use a long, randomly generated string of characters. For example by running `openssl rand -base64 32`.
**Keep this token a secret. If you configure this as the `ADMIN_TOKEN` this will be used as the password to access the admin area of your server!** Since the configuration is generally stored in plain text, it is recommended to [secure the admin token](https://github.com/dani-garcia/vaultwarden/wiki/Enabling-admin-page#secure-the-admin_token).