Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/selfhosted/configuration-files.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ server:
Where to write log output. Use `console` for Docker logging (recommended) or specify a file path. Default: `console`.
</Property>
<Property name="server.authSecret" type="string">
Shared secret for relay authentication. Auto-generated by the setup script. This secret is used internally by the combined server for relay credential validation.
Base64 string of shared secret for relay authentication (With `=` stripped). Auto-generated by the setup script. This secret is used internally by the combined server for relay credential validation.
</Property>
<Property name="server.dataDir" type="string">
Data directory path where the server stores its database and state files. Default: `/var/lib/netbird`. Maps to the `netbird_data` Docker volume.
Expand Down Expand Up @@ -324,7 +324,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.
</Property>
<Property name="server.store.encryptionKey" type="string">
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 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.
</Property>
</Properties>

Expand Down