aboutsummaryrefslogtreecommitdiffstats
path: root/docs/versioned_docs/version-v0.22.0/03-configuration.md
diff options
context:
space:
mode:
authorKyle Wilson <wilson15701@gmail.com>2025-06-22 07:08:18 -0400
committerGitHub <noreply@github.com>2025-06-22 12:08:18 +0100
commit91a9d3c1aee04d77b2a2d022821f4a7a38e315f3 (patch)
treeeae54e1e22b69e1b234665fcafd5ec5e00db697a /docs/versioned_docs/version-v0.22.0/03-configuration.md
parent04f93941ca4d10f09befb4d1b219899ecbe792b1 (diff)
downloadkarakeep-91a9d3c1aee04d77b2a2d022821f4a7a38e315f3.tar.zst
docs: update meilisearch key generation instruction (#1651)
* add pipe for trimming invalid characters when generating meili master key * fix table row for MEILI_MASTER_KEY in versioned_docs
Diffstat (limited to 'docs/versioned_docs/version-v0.22.0/03-configuration.md')
-rw-r--r--docs/versioned_docs/version-v0.22.0/03-configuration.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/versioned_docs/version-v0.22.0/03-configuration.md b/docs/versioned_docs/version-v0.22.0/03-configuration.md
index 59496409..e5682e24 100644
--- a/docs/versioned_docs/version-v0.22.0/03-configuration.md
+++ b/docs/versioned_docs/version-v0.22.0/03-configuration.md
@@ -8,7 +8,7 @@ The app is mainly configured by environment variables. All the used environment
| NEXTAUTH_URL | Yes | Not set | Should point to the address of your server. The app will function without it, but will redirect you to wrong addresses on signout for example. |
| NEXTAUTH_SECRET | Yes | Not set | Random string used to sign the JWT tokens. Generate one with `openssl rand -base64 36`. |
| MEILI_ADDR | No | Not set | The address of meilisearch. If not set, Search will be disabled. E.g. (`http://meilisearch:7700`) |
-| MEILI_MASTER_KEY | Only in Prod and if search is enabled | Not set | The master key configured for meilisearch. Not needed in development environment. Generate one with `openssl rand -base64 36` |
+| MEILI_MASTER_KEY | Only in Prod and if search is enabled | Not set | The master key configured for meilisearch. Not needed in development environment. Generate one with `openssl rand -base64 36 \| tr -dc 'A-Za-z0-9'` |
| MAX_ASSET_SIZE_MB | No | 50 | Sets the maximum allowed asset size (in MB) to be uploaded |
| DISABLE_NEW_RELEASE_CHECK | No | false | If set to true, latest release check will be disabled in the admin panel. |