Browse Source

Make the HA warning re: SECRET_KEY a note

Jeremy Stretch 9 years ago
parent
commit
f6bd1f0c48
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/installation/netbox.md

+ 3 - 2
docs/installation/netbox.md

@@ -110,10 +110,11 @@ DATABASE = {
 
 Generate a random secret key of at least 50 alphanumeric characters. This key must be unique to this installation and must not be shared outside the local system.
 
-In the case of a highly available installation with multiple web servers, SECRET_KEY must be identical between all server in order to maintain a persistent user session state between servers.
-
 You may use the script located at `netbox/generate_secret_key.py` to generate a suitable key.
 
+!!! note
+    In the case of a highly available installation with multiple web servers, `SECRET_KEY` must be identical among all servers in order to maintain a persistent user session state.
+
 # Run Database Migrations
 
 Before NetBox can run, we need to install the database schema. This is done by running `./manage.py migrate` from the `netbox` directory (`/opt/netbox/netbox/` in our example):