website/docs: fix #9552 openssl rand base64 line wrap (#10211)

This commit is contained in:
Jonathan Joewono
2024-06-24 23:19:47 +02:00
committed by GitHub
parent e25ceb5041
commit 53a44435f8
7 changed files with 11 additions and 11 deletions

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)" >> .env
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64)" >> .env
echo "PG_PASS=$(openssl rand 36 | base64 -w 0)" >> .env
echo "AUTHENTIK_SECRET_KEY=$(openssl rand 60 | base64 -w 0)" >> .env
```
:::info

View File

@ -23,7 +23,7 @@ Start by generating passwords for the database and cache. You can use either of
```shell
pwgen -s 50 1
openssl rand 60 | base64
openssl rand 60 | base64 -w 0
```
### Set Values