website/docs: installation: ensures .env setup works consistently across GNU and BSD systems (#10540)

Signed-off-by: 4d62 <github-user@sdko.org>
This commit is contained in:
4d62
2024-07-18 12:04:12 -04:00
committed by GitHub
parent a845d8c7d2
commit 4583f636ef

View File

@ -50,8 +50,8 @@ Run the following commands to generate a password and secret key and write them
{/* prettier-ignore */}
```shell
echo "PG_PASS=$(openssl rand 36 | base64 -w 0)" >> .env
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64 -w 0)" >> .env
echo "PG_PASS=$(openssl rand -base64 36 | tr -d '\n')" >> .env
echo "AUTHENTIK_SECRET_KEY=$(openssl rand -base64 60 | tr -d '\n')" >> .env
```
:::info