From bd0d995c2ce5b125dfb797234f79a8d6fe9b754a Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Sun, 17 Jul 2022 18:39:38 +0200 Subject: [PATCH] fix(docs): openssl command --- apps/docs/docs/self-hosting/docker.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/docs/self-hosting/docker.mdx b/apps/docs/docs/self-hosting/docker.mdx index a38800852..e1fd0fc20 100644 --- a/apps/docs/docs/self-hosting/docker.mdx +++ b/apps/docs/docs/self-hosting/docker.mdx @@ -31,7 +31,7 @@ On your server, download the latest `docker-compose.yml` file: The compose file has placeholders for the required parameters. To set the parameters you'll first need a random 32-character secret key which will be used to encrypt sensitive data. Here is a simple way to generate one: ```sh -openssl rand -base64 32 | tr -d '\n' ; echo +openssl rand -base64 24 | tr -d '\n' ; echo ``` Now edit `docker-compose.yml` and: