documentation: Improve notes around SECRET_KEY generation

This commit is contained in:
Tom Moor 2021-06-03 08:30:53 -07:00 committed by GitHub
parent 9817e2f3bf
commit 1f49b35c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,12 +8,13 @@
# REQUIRED # REQUIRED
# Generate a unique random key, you can use `openssl rand -hex 32` in terminal # Generate a unique 32 character hexadecimal key. The format is important as this
# DO NOT LEAVE UNSET # value is fed directly into encryption libraries. You should use `openssl rand -hex 32`
# in your terminal to generate a random value.
SECRET_KEY=generate_a_new_key SECRET_KEY=generate_a_new_key
# Generate a unique random key, you can use `openssl rand -hex 32` in terminal # Generate a unique random key. The format is not important but you could still use
# DO NOT LEAVE UNSET # `openssl rand -hex 32` in your terminal to produce this.
UTILS_SECRET=generate_a_new_key UTILS_SECRET=generate_a_new_key
# For production point these at your databases, in development the default # For production point these at your databases, in development the default