From eda9583d490320516a902cdc6f99bb2cbee0deaa Mon Sep 17 00:00:00 2001 From: Basel Sayeh Date: Thu, 26 Feb 2026 22:15:14 +0300 Subject: [PATCH] Update configuration-files.mdx Specify that encryptionKey is a base64 string of a key --- src/pages/selfhosted/configuration-files.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/selfhosted/configuration-files.mdx b/src/pages/selfhosted/configuration-files.mdx index e3e59346..42c7a6a6 100644 --- a/src/pages/selfhosted/configuration-files.mdx +++ b/src/pages/selfhosted/configuration-files.mdx @@ -308,7 +308,7 @@ Configures the database backend for storing all NetBird management data includin Connection string for postgres or mysql engines. For postgres: `host=localhost user=netbird password=secret dbname=netbird port=5432`. Alternatively, use the `NETBIRD_STORE_ENGINE_POSTGRES_DSN` or `NETBIRD_STORE_ENGINE_MYSQL_DSN` environment variables. - 32-byte (256-bit) encryption key for sensitive data at rest. Used to encrypt setup keys, API tokens, and other secrets stored in the database. Auto-generated by the setup script. + base64 string of a 32-byte (256-bit) encryption key for sensitive data at rest. Used to encrypt setup keys, API tokens, and other secrets stored in the database. Auto-generated by the setup script.