From 1897a4393f94b0c75bcd7231b01e47dbe9166c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Margula?= Date: Sat, 22 Oct 2016 10:51:52 +0200 Subject: [PATCH] Update README.rst There is no random in os module, changed to urandom (same as in default_setttings), also fixed path in example apache config. --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 8238ed9..05937ef 100644 --- a/README.rst +++ b/README.rst @@ -310,7 +310,7 @@ and run it once: import os - print os.random(24) + print os.urandom(24) Copy the output and add the following to your ``wsgi.py`` file: @@ -332,7 +332,7 @@ Here is a sample configuration for Debian and Ubuntu: CustomLog /var/log/apache2/puppetboard.access.log combined Alias /static /usr/local/lib/pythonX.Y/dist-packages/puppetboard/static - + Satisfy Any Allow from all