Skip to content

Commit

Permalink
Merge pull request #257 from mia-platform/docs/fix-rand-string-cmd
Browse files Browse the repository at this point in the history
docs: fix rand string cmd for encryption to work everywhere
  • Loading branch information
verdienansein authored Jan 28, 2024
2 parents 199fb97 + 1af6f9a commit dd9b006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/30_Encryption_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ try {

#### How to generate a local master key using Shell Command
```shell
LC_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 96 | head -1
LC_ALL=C tr -dc 'a-zA-Z0-9' < /dev/urandom | fold -w 96 | head -1
```

## Migration and change of the configurations
Expand Down

0 comments on commit dd9b006

Please sign in to comment.