From 00a48991143c9bdccd0f4180deca8bced9ec3853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 27 Apr 2016 13:09:40 +0200 Subject: [PATCH] Incorporate suggestions from wiki MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- doc/setup.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/setup.rst b/doc/setup.rst index e577689792..7a0dc4beff 100644 --- a/doc/setup.rst +++ b/doc/setup.rst @@ -265,6 +265,8 @@ simple configuration may look like this: $i=0; $i++; $cfg['Servers'][$i]['auth_type'] = 'cookie'; + // if you insist on "root" having no password: + // $cfg['Servers'][$i]['AllowNoPasswordRoot'] = true; ` ?> Or, if you prefer to not be prompted every time you log in: @@ -281,6 +283,11 @@ Or, if you prefer to not be prompted every time you log in: $cfg['Servers'][$i]['auth_type'] = 'config'; ?> +.. warning:: + + Storing passwords in the configuration is insecure as anybody can then + manipulate with your database. + For a full explanation of possible configuration values, see the :ref:`config` of this document.