From 12a48feee7e2101f2811c4d7d9619cdc503e5e16 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Thu, 16 Nov 2023 11:21:08 -0800 Subject: [PATCH] README: note that SECRET_KEY can't be empty Fixes #978. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f2baec1..d6aea5dd 100644 --- a/README.md +++ b/README.md @@ -168,9 +168,9 @@ to explicitly specify the protocol to be used setting the `PUPPETDB_PROTO` varia Other settings that might be interesting, in no particular order: -- `SECRET_KEY`: set this to a long string, **the same for each application replica** and keep it secret. Refer to +- `SECRET_KEY`: set this to a long string, **the same for each application replica**, and keep it secret. Refer to [Flask documentation](https://flask.palletsprojects.com/en/2.1.x/quickstart/#sessions), section - "How to generate good secret keys" for more info. + "How to generate good secret keys" for more info. Cannot be an empty string, which is the default. - `FAVORITE_ENVS`: an ordered list of Puppet environment names that will be shown immediately after "All Environments" and before other environments (which are sorted by name) in the dropdown for choosing the environment shown in the top-right of the UI. Environments listed here that do not really exist in your deployment are silently ignored.